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 d8513b9 commit 569aa61
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
10 changes: 6 additions & 4 deletions vsaa/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
from .abstract import * # noqa: F401, F403
from .antialiasers import * # noqa: F401, F403
from .enums import * # noqa: F401, F403
from .funcs import * # noqa: F401, F403
# ruff: noqa: F401, F403

from .abstract import *
from .antialiasers import *
from .enums import *
from .funcs import *
10 changes: 6 additions & 4 deletions vsaa/antialiasers/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
from .eedi2 import * # noqa: F401, F403
from .eedi3 import * # noqa: F401, F403
from .nnedi3 import * # noqa: F401, F403
from .sangnom import * # noqa: F401, F403
# ruff: noqa: F401, F403

from .eedi2 import *
from .eedi3 import *
from .nnedi3 import *
from .sangnom import *

__all__ = [ # noqa: F405
'Eedi2', 'Eedi3', 'Nnedi3', 'SangNom'
Expand Down

0 comments on commit 569aa61

Please sign in to comment.