Skip to content

Commit

Permalink
πŸ“ Suppress lint warnings in imports
Browse files Browse the repository at this point in the history
  • Loading branch information
shroominic committed Nov 8, 2023
1 parent c9fb899 commit 28c5417
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions funcchain/utils/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from funcchain.utils.function_frame import *
from funcchain.utils.helpers import *
from funcchain.utils.model_defaults import *
from funcchain.utils.function_frame import * # noqa: F401, F403
from funcchain.utils.helpers import * # noqa: F401, F403
from funcchain.utils.model_defaults import * # noqa: F401, F403

0 comments on commit 28c5417

Please sign in to comment.