Skip to content

Commit

Permalink
fix: linted all __init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
MothNik committed Apr 9, 2024
1 parent 00df83b commit 4052ad9
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions robustbase/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from .robustbase import Qn
from .robustbase import Sn
from .robustbase import iqr
from .robustbase import mad
from .robustbase import Qn # noqa: F401
from .robustbase import Sn # noqa: F401
from .robustbase import iqr # noqa: F401
from .robustbase import mad # noqa: F401


8 changes: 4 additions & 4 deletions robustbase/stats/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .Qn import Qn
from .Sn import Sn
from .iqr import iqr
from .mad import mad
from .iqr import iqr # noqa: F401
from .mad import mad # noqa: F401
from .Qn import Qn # noqa: F401
from .Sn import Sn # noqa: F401
4 changes: 2 additions & 2 deletions robustbase/utils/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
from .mean import mean # noqa: F401
from .median import median # noqa: F401S
from .mean import mean # noqa: F401
from .median import median # noqa: F401

0 comments on commit 4052ad9

Please sign in to comment.