trivial: apply new black

This commit is contained in:
Frédéric Péters 2021-11-22 22:10:20 +01:00
parent 568d853d60
commit 7bf22c116a
2 changed files with 8 additions and 8 deletions

View File

@ -36,7 +36,7 @@ def test_all_mairie_data_parsed_correct():
@pytest.mark.freeze_time("2018-03-05 14:59:00") @pytest.mark.freeze_time("2018-03-05 14:59:00")
def test_empty_data(): def test_empty_data():
""""no data return the empty html""" """ "no data return the empty html"""
test_html = as_opening_hours_badge(GEOJSON[0]['properties']) test_html = as_opening_hours_badge(GEOJSON[0]['properties'])
assert test_html == '' assert test_html == ''
@ -279,7 +279,7 @@ def test_mairie_format_openinghoursspecification(day, opens, closes, badge, text
@pytest.mark.freeze_time("2018-03-09 00:30:00") @pytest.mark.freeze_time("2018-03-09 00:30:00")
def test_mairie_having_both_formats(): def test_mairie_having_both_formats():
""" openinghoursspecification take preference over openinghours""" """openinghoursspecification take preference over openinghours"""
geojson = """ geojson = """
{ {
"properties": { "properties": {
@ -302,7 +302,7 @@ def test_mairie_having_both_formats():
@pytest.mark.freeze_time("2021-01-21 15:37:00") @pytest.mark.freeze_time("2021-01-21 15:37:00")
def test_mairie_saint_genis_lavak(): def test_mairie_saint_genis_lavak():
""" #50337 """ """#50337"""
geojson = json.load(open(os.path.join(BASE_DIR, 'tests/data/mairie-saint-genis-lavak.json'))) geojson = json.load(open(os.path.join(BASE_DIR, 'tests/data/mairie-saint-genis-lavak.json')))
test_html = as_opening_hours_badge(geojson['features'][0]) test_html = as_opening_hours_badge(geojson['features'][0])
klass, label = 'open', u"Ouvert jusqu'à 17h30" klass, label = 'open', u"Ouvert jusqu'à 17h30"

View File

@ -20,7 +20,7 @@ def test_mairie_hours_parsing():
def test_mairie_hours_nodata(): def test_mairie_hours_nodata():
""""no data return nothing""" """ "no data return nothing"""
assert get_mairie_opening_hours(GEOJSON[0]['properties']) is None assert get_mairie_opening_hours(GEOJSON[0]['properties']) is None
@ -126,7 +126,7 @@ def test_mairie_saint_priest():
def test_mairie_format_openinghours(): def test_mairie_format_openinghours():
""" some mairie may still only define the openinghours format """ """some mairie may still only define the openinghours format"""
geojson = """ geojson = """
{ {
"properties": { "properties": {
@ -154,7 +154,7 @@ def test_mairie_format_openinghours():
@pytest.mark.freeze_time("2018-03-09 00:30:00") @pytest.mark.freeze_time("2018-03-09 00:30:00")
def test_mairie_format_openinghoursspecification(): def test_mairie_format_openinghoursspecification():
""" openinghoursspecification the default format """ """openinghoursspecification the default format"""
geojson = """ geojson = """
{ {
"properties": { "properties": {
@ -216,7 +216,7 @@ def test_mairie_format_openinghoursspecification():
@pytest.mark.freeze_time("2018-03-09 00:30:00") @pytest.mark.freeze_time("2018-03-09 00:30:00")
def test_mairie_having_both_formats(): def test_mairie_having_both_formats():
""" openinghoursspecification take preference over openinghours""" """openinghoursspecification take preference over openinghours"""
geojson = """ geojson = """
{ {
"properties": { "properties": {
@ -239,7 +239,7 @@ def test_mairie_having_both_formats():
@pytest.mark.freeze_time("2021-01-21 15:37:00") @pytest.mark.freeze_time("2021-01-21 15:37:00")
def test_mairie_saint_genis_lavak(): def test_mairie_saint_genis_lavak():
""" #50337 """ """#50337"""
geojson = json.load(open(os.path.join(BASE_DIR, 'tests/data/mairie-saint-genis-lavak.json'))) geojson = json.load(open(os.path.join(BASE_DIR, 'tests/data/mairie-saint-genis-lavak.json')))
test_time_table = get_mairie_opening_hours(geojson['features'][0]) test_time_table = get_mairie_opening_hours(geojson['features'][0])
assert test_time_table == [ assert test_time_table == [