Skip to content

Commit 09e400d

Browse files
committed
make flake8 ignore E402
1 parent ce7bc53 commit 09e400d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

comment_spell_check/comment_spell_check.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@
4040
parent_directory = os.path.dirname(current_script_path)
4141
sys.path.insert(0, parent_directory + "/../")
4242

43-
from comment_spell_check.utils import parseargs
44-
from comment_spell_check.utils import bibtex_loader
45-
from comment_spell_check.utils import create_checker
46-
from comment_spell_check.utils import url_remove
43+
from comment_spell_check.utils import parseargs # noqa: E402
44+
from comment_spell_check.utils import bibtex_loader # noqa: E402
45+
from comment_spell_check.utils import create_checker # noqa: E402
46+
from comment_spell_check.utils import url_remove # noqa: E402
4747

4848
__version__ = "unknown"
4949

0 commit comments

Comments
 (0)