1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

travis fix #1: flake8 formatting

This commit is contained in:
Shlomi Fish 2020-09-26 18:52:15 +03:00
parent eff7beacee
commit 05d78d5490

View file

@ -177,8 +177,10 @@ def gen_rules_html():
# open file of list of all rules
out_rules = open(os.path.join('html', 'rules.html'), 'w')
print(_fmt(main_header, {'title': 'PySol - une collection de jeux de solitaire'}),
file=out_rules)
print(_fmt(
main_header,
{'title': 'PySol - une collection de jeux de solitaire'}),
file=out_rules)
with open('rules.html', 'r') as file:
print(file.read(), file=out_rules)
@ -208,11 +210,13 @@ def gen_rules_html():
title = 'PySol - Règles pour ' + gi.name
s = ''
if gi.si.game_type == GI.GT_HANAFUDA:
s = '<a href="../hanafuda.html">Règles générales des jeux de cartes à fleurs</a>'
s = '<a href="../hanafuda.html">' + \
'Règles générales des jeux de cartes à fleurs</a>'
elif gi.si.game_type == GI.GT_DASHAVATARA_GANJIFA:
s = '<a href="../ganjifa.html">A-propos du Ganjifa</a>'
elif gi.si.game_type == GI.GT_HEXADECK:
s = '<a href="../hexadeck.html">Règles générales du jeu Hex A Deck</a>'
s = '<a href="../hexadeck.html">' + \
'Règles générales du jeu Hex A Deck</a>'
elif gi.si.game_type == GI.GT_MUGHAL_GANJIFA:
s = '<a href="../ganjifa.html">A-propos du Ganjifa</a>'
# print '***', gi.name, '***'
@ -234,8 +238,9 @@ def gen_rules_html():
# create file of altnames
out_rules_alt = open(os.path.join('html', 'rules_alternate.html'), 'w')
print(_fmt(main_header, {'title': 'PySol - une collection de jeux de solitaire'}),
file=out_rules_alt)
print(_fmt(
main_header, {'title': 'PySol - une collection de jeux de solitaire'}),
file=out_rules_alt)
with open('rules_alternate.html', 'r') as file:
print(file.read(), file=out_rules_alt)
altnames.sort()