Skip to content

Commit

Permalink
Added noqa for imports and Annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
singh-lokendra committed Jun 11, 2019
1 parent 31491ce commit 943957e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apertium/lttoolbox.py
@@ -1,6 +1,6 @@
import platform
import tempfile
from typing import ByteString
from typing import ByteString # noqa: F401
if platform.system() == 'Linux':
from apertium.swig.linux import lttoolbox
elif platform.system() == 'Windows':
Expand Down
2 changes: 1 addition & 1 deletion apertium/utils.py
Expand Up @@ -6,7 +6,7 @@

import apertium # noqa: F401
from apertium.iso639 import iso_639_codes # noqa: F401
from apertium import lttoolbox
from apertium import lttoolbox # noqa: F401

iso639_codes_inverse = {v: k for k, v in iso_639_codes.items()}

Expand Down

0 comments on commit 943957e

Please sign in to comment.