mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
flake8
This commit is contained in:
parent
055718d2e9
commit
620b2676f4
3 changed files with 14 additions and 15 deletions
|
@ -15,10 +15,10 @@ pysollib_dir = '../'
|
||||||
builtins._ = lambda x: x
|
builtins._ = lambda x: x
|
||||||
builtins.n_ = lambda x: x
|
builtins.n_ = lambda x: x
|
||||||
|
|
||||||
import pysollib.games
|
import pysollib.games # noqa: F402
|
||||||
import pysollib.games.mahjongg
|
import pysollib.games.mahjongg # noqa: F402
|
||||||
import pysollib.games.ultra
|
import pysollib.games.ultra # noqa: F402
|
||||||
import pysollib.games.special
|
import pysollib.games.special # noqa: F401,F402
|
||||||
|
|
||||||
try:
|
try:
|
||||||
os.mkdir('html')
|
os.mkdir('html')
|
||||||
|
@ -206,13 +206,13 @@ def gen_rules_html():
|
||||||
rules_list.append((rules_dir, rules_fn, title, s))
|
rules_list.append((rules_dir, rules_fn, title, s))
|
||||||
files_list.append(rules_fn)
|
files_list.append(rules_fn)
|
||||||
# rules_list.append((rules_fn, gi.name))
|
# rules_list.append((rules_fn, gi.name))
|
||||||
print('<li><a href="rules/%s">%s</a>' \
|
print('<li><a href="rules/%s">%s</a>'
|
||||||
% (rules_fn, gi.name), file=out_rules)
|
% (rules_fn, gi.name), file=out_rules)
|
||||||
for n in gi.altnames:
|
for n in gi.altnames:
|
||||||
altnames.append((n, rules_fn))
|
altnames.append((n, rules_fn))
|
||||||
|
|
||||||
print('</ul>\n' + main_footer % \
|
print('</ul>\n' + main_footer %
|
||||||
'<a href="index.html">Back to the index</a>', file=out_rules)
|
'<a href="index.html">Back to the index</a>', file=out_rules)
|
||||||
|
|
||||||
out_rules.close()
|
out_rules.close()
|
||||||
|
|
||||||
|
@ -224,15 +224,16 @@ def gen_rules_html():
|
||||||
print(file.read(), file=out_rules_alt)
|
print(file.read(), file=out_rules_alt)
|
||||||
altnames.sort()
|
altnames.sort()
|
||||||
for name, fn in altnames:
|
for name, fn in altnames:
|
||||||
print('<li> <a href="rules/%s">%s</a>' \
|
print('<li> <a href="rules/%s">%s</a>'
|
||||||
% (fn, name), file=out_rules_alt)
|
% (fn, name), file=out_rules_alt)
|
||||||
print('</ul>\n' + main_footer % \
|
print('</ul>\n' + main_footer %
|
||||||
'<a href="index.html">Back to the index</a>', file=out_rules_alt)
|
'<a href="index.html">Back to the index</a>', file=out_rules_alt)
|
||||||
out_rules_alt.close()
|
out_rules_alt.close()
|
||||||
|
|
||||||
# create rules
|
# create rules
|
||||||
for dir, filename, title, footer in rules_list:
|
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':
|
if dir == 'rules':
|
||||||
print(rules_header % title, file=outfile)
|
print(rules_header % title, file=outfile)
|
||||||
else: # d == 'wikipedia'
|
else: # d == 'wikipedia'
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -6,7 +6,7 @@ from distutils.core import setup
|
||||||
from pysollib.settings import VERSION
|
from pysollib.settings import VERSION
|
||||||
from pysollib.settings import PACKAGE_URL
|
from pysollib.settings import PACKAGE_URL
|
||||||
if os.name == 'nt':
|
if os.name == 'nt':
|
||||||
import py2exe
|
import py2exe # noqa: F401
|
||||||
|
|
||||||
if os.name == 'posix':
|
if os.name == 'posix':
|
||||||
data_dir = 'share/PySolFC'
|
data_dir = 'share/PySolFC'
|
||||||
|
|
|
@ -21,12 +21,10 @@ else
|
||||||
my %skip = (
|
my %skip = (
|
||||||
map { $_ => 1 }
|
map { $_ => 1 }
|
||||||
qw(
|
qw(
|
||||||
html-src/gen-html.py
|
|
||||||
pysollib/games/__init__.py
|
pysollib/games/__init__.py
|
||||||
pysollib/games/mahjongg/__init__.py
|
pysollib/games/mahjongg/__init__.py
|
||||||
pysollib/games/special/__init__.py
|
pysollib/games/special/__init__.py
|
||||||
pysollib/games/ultra/__init__.py
|
pysollib/games/ultra/__init__.py
|
||||||
./setup.py
|
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue