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 520555b commit 6de2d75
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 12 deletions.
11 changes: 6 additions & 5 deletions vskernels/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from . import exceptions, kernels, util # noqa: F401, F403
from .exceptions import * # noqa: F401, F403
from .kernels import * # noqa: F401, F403
from .types import * # noqa: F401, F403
from .util import * # noqa: F401, F403
# ruff: noqa: F401, F403

from .exceptions import *
from .kernels import *
from .types import *
from .util import *
16 changes: 9 additions & 7 deletions vskernels/kernels/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
from .abstract import * # noqa: F401, F403
from .bicubic import * # noqa: F401, F403
from .complex import * # noqa: F401, F403
from .custom import * # noqa: F401, F403
from .placebo import * # noqa: F401, F403
from .spline import * # noqa: F401, F403
from .various import * # noqa: F401, F403
# ruff: noqa: F401, F403

from .abstract import *
from .bicubic import *
from .complex import *
from .custom import *
from .placebo import *
from .spline import *
from .various import *

0 comments on commit 6de2d75

Please sign in to comment.