Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
antazoey committed Jun 19, 2024
1 parent 2e217ae commit 54f49d1
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/ape/api/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from enum import Enum
from functools import cached_property
from pathlib import Path
from typing import TYPE_CHECKING, Any, Optional, TypeVar, cast
from typing import Any, Optional, TypeVar, cast

import yaml
from ethpm_types import PackageManifest, PackageMeta, Source
Expand All @@ -24,9 +24,6 @@
)
from ape.utils.misc import load_config

if TYPE_CHECKING:
from ape.managers.config import ConfigManager

ConfigItemType = TypeVar("ConfigItemType")


Expand Down Expand Up @@ -55,6 +52,7 @@ class PluginConfig(BaseSettings):
A base plugin configuration class. Each plugin that includes
a config API must register a subclass of this class.
"""

model_config = SettingsConfigDict(extra="allow")

@classmethod
Expand Down

0 comments on commit 54f49d1

Please sign in to comment.