diff options
| author | Lex Neva <github.com@lexneva.name> | 2018-08-21 21:43:09 -0400 |
|---|---|---|
| committer | Lex Neva <github.com@lexneva.name> | 2018-08-21 21:43:09 -0400 |
| commit | 908f2cd7727e939b87e3f57c1d3a189705de4c94 (patch) | |
| tree | d0a868121190fb0ae4cae2b9ee7ae199d5230ef0 /lib/inx | |
| parent | 94f391ab4262b5e1c8dace0263467a0ec1f17058 (diff) | |
pyflakes fixes
Diffstat (limited to 'lib/inx')
| -rw-r--r-- | lib/inx/generate.py | 4 | ||||
| -rw-r--r-- | lib/inx/utils.py | 2 |
2 files changed, 2 insertions, 4 deletions
diff --git a/lib/inx/generate.py b/lib/inx/generate.py index 1cf347f2..941596de 100644 --- a/lib/inx/generate.py +++ b/lib/inx/generate.py @@ -1,9 +1,7 @@ -import os - from .inputs import generate_input_inx_files from .outputs import generate_output_inx_files from .extensions import generate_extension_inx_files -from .utils import iterate_inx_locales, inx_path +from .utils import iterate_inx_locales def generate_inx_files(): diff --git a/lib/inx/utils.py b/lib/inx/utils.py index 6670cfcb..8dd3fdf8 100644 --- a/lib/inx/utils.py +++ b/lib/inx/utils.py @@ -3,7 +3,7 @@ import gettext from os.path import dirname from jinja2 import Environment, FileSystemLoader -from ..i18n import translation as default_translation, locale_dir, _, N_ +from ..i18n import translation as default_translation, locale_dir, N_ _top_path = dirname(dirname(dirname(os.path.realpath(__file__)))) |
