Skip to content

Commit

Permalink
__init__: top level noqa
Browse files Browse the repository at this point in the history
  • Loading branch information
LightArrowsEXE committed Oct 11, 2024
1 parent 0c32e3e commit c9d4ff3
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 17 deletions.
26 changes: 14 additions & 12 deletions vsmasktools/__init__.py
Original file line number Diff line number Diff line change
@@ -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 *
12 changes: 7 additions & 5 deletions vsmasktools/edge/__init__.py
Original file line number Diff line number Diff line change
@@ -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 *

0 comments on commit c9d4ff3

Please sign in to comment.