From 84e32173c58be381e962f1ed2168d0c9d3ce6432 Mon Sep 17 00:00:00 2001 From: LightArrowsEXE Date: Fri, 11 Oct 2024 21:36:29 +0200 Subject: [PATCH] `__init__`: top level noqa --- vsdeband/__init__.py | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/vsdeband/__init__.py b/vsdeband/__init__.py index a543e63..dd4725c 100644 --- a/vsdeband/__init__.py +++ b/vsdeband/__init__.py @@ -1,8 +1,10 @@ -from .abstract import * # noqa: F401, F403 -from .f3kdb import * # noqa: F401, F403 -from .filters import * # noqa: F401, F403 -from .funcs import * # noqa: F401, F403 -from .mask import * # noqa: F401, F403 -from .noise import * # noqa: F401, F403 -from .placebo import * # noqa: F401, F403 -from .types import * # noqa: F401, F403 +# ruff: noqa: F401, F403 + +from .abstract import * +from .f3kdb import * +from .filters import * +from .funcs import * +from .mask import * +from .noise import * +from .placebo import * +from .types import *