diff --git a/vsmasktools/__init__.py b/vsmasktools/__init__.py index 5b15e0b..bba7293 100644 --- a/vsmasktools/__init__.py +++ b/vsmasktools/__init__.py @@ -1,12 +1,14 @@ -from .abstract import * # noqa: F401, F403 -from .details import * # noqa: F401, F403 -from .diff import * # noqa: F401, F403 -from .edge import * # noqa: F401, F403 -from .edge_funcs import * # noqa: F401, F403 -from .exceptions import * # noqa: F401, F403 -from .hardsub import * # noqa: F401, F403 -from .masks import * # noqa: F401, F403 -from .morpho import * # noqa: F401, F403 -from .spat_funcs import * # noqa: F401, F403 -from .types import * # noqa: F401, F403 -from .utils import * # noqa: F401, F403 +# ruff: noqa: F401, F403 + +from .abstract import * +from .details import * +from .diff import * +from .edge import * +from .edge_funcs import * +from .exceptions import * +from .hardsub import * +from .masks import * +from .morpho import * +from .spat_funcs import * +from .types import * +from .utils import * diff --git a/vsmasktools/edge/__init__.py b/vsmasktools/edge/__init__.py index f2ad9aa..1344409 100644 --- a/vsmasktools/edge/__init__.py +++ b/vsmasktools/edge/__init__.py @@ -1,5 +1,7 @@ -from ._1d import * # noqa: F401, F403 -from ._2x2 import * # noqa: F401, F403 -from ._3x3 import * # noqa: F401, F403 -from ._5x5 import * # noqa: F401, F403 -from ._abstract import * # noqa: F401, F403 +# ruff: noqa: F401, F403 + +from ._1d import * +from ._2x2 import * +from ._3x3 import * +from ._5x5 import * +from ._abstract import *