Skip to content

Commit 6f15b74

Browse files
Some small improvementsw
1 parent 7535d7a commit 6f15b74

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

alluka/managed/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
from . import _index
4040
from ._config import ConfigFile as ConfigFile
4141
from ._config import PluginConfig as PluginConfig # noqa: TC002
42-
from ._config import TypeConfig as TypeConfig
42+
from ._config import TypeConfig as TypeConfig # noqa: TC002
4343
from ._manager import Manager as Manager
4444

4545
if typing.TYPE_CHECKING:

alluka/managed/_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ class PluginConfig(abc.ABC):
272272
__slots__ = ()
273273

274274
@classmethod
275-
def config_types(cls) -> collections.Sequence[type[PluginConfig]]:
275+
def config_types(cls) -> collections.Sequence[type[typing.Any]]:
276276
"""The types to use when registering this configuration as a type dependency."""
277277
return [cls]
278278

0 commit comments

Comments
 (0)