diff --git a/html-src/gen-html.py b/html-src/gen-html.py
index b567b8c8..694e1f3c 100755
--- a/html-src/gen-html.py
+++ b/html-src/gen-html.py
@@ -15,10 +15,10 @@ pysollib_dir = '../'
builtins._ = lambda x: x
builtins.n_ = lambda x: x
-import pysollib.games
-import pysollib.games.mahjongg
-import pysollib.games.ultra
-import pysollib.games.special
+import pysollib.games # noqa: F402
+import pysollib.games.mahjongg # noqa: F402
+import pysollib.games.ultra # noqa: F402
+import pysollib.games.special # noqa: F401,F402
try:
os.mkdir('html')
@@ -206,13 +206,13 @@ def gen_rules_html():
rules_list.append((rules_dir, rules_fn, title, s))
files_list.append(rules_fn)
# rules_list.append((rules_fn, gi.name))
- print('
%s' \
- % (rules_fn, gi.name), file=out_rules)
+ print('%s'
+ % (rules_fn, gi.name), file=out_rules)
for n in gi.altnames:
altnames.append((n, rules_fn))
- print('\n' + main_footer % \
- 'Back to the index', file=out_rules)
+ print('\n' + main_footer %
+ 'Back to the index', file=out_rules)
out_rules.close()
@@ -224,15 +224,16 @@ def gen_rules_html():
print(file.read(), file=out_rules_alt)
altnames.sort()
for name, fn in altnames:
- print(' %s' \
+ print(' %s'
% (fn, name), file=out_rules_alt)
- print('\n' + main_footer % \
- 'Back to the index', file=out_rules_alt)
+ print('\n' + main_footer %
+ 'Back to the index', file=out_rules_alt)
out_rules_alt.close()
# create rules
for dir, filename, title, footer in rules_list:
- outfile = open(os.path.join('html', 'rules', filename), 'w', encoding='utf-8')
+ outfile = open(
+ os.path.join('html', 'rules', filename), 'w', encoding='utf-8')
if dir == 'rules':
print(rules_header % title, file=outfile)
else: # d == 'wikipedia'
diff --git a/setup.py b/setup.py
index 57721458..f74c1d4c 100644
--- a/setup.py
+++ b/setup.py
@@ -6,7 +6,7 @@ from distutils.core import setup
from pysollib.settings import VERSION
from pysollib.settings import PACKAGE_URL
if os.name == 'nt':
- import py2exe
+ import py2exe # noqa: F401
if os.name == 'posix':
data_dir = 'share/PySolFC'
diff --git a/tests/style/py-flake8.t b/tests/style/py-flake8.t
index e4df0c1e..9bb0c742 100644
--- a/tests/style/py-flake8.t
+++ b/tests/style/py-flake8.t
@@ -21,12 +21,10 @@ else
my %skip = (
map { $_ => 1 }
qw(
- html-src/gen-html.py
pysollib/games/__init__.py
pysollib/games/mahjongg/__init__.py
pysollib/games/special/__init__.py
pysollib/games/ultra/__init__.py
- ./setup.py
)
);