Skip to content

Commit

Permalink
Downgrade from f-strings
Browse files Browse the repository at this point in the history
  • Loading branch information
olegsobolev committed Oct 22, 2024
1 parent bcb04cf commit a71e4e2
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions iotbx/regression/tst_fetch.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,9 @@ def exercise_4():
"6yvd.fa",
]
for fn in expected_files:
assert os.path.isfile(fn), f"File {fn} not found, but it should be present with action=model"

assert os.path.isfile(fn), "File {0} not found, but it should be present with action=model".format(fn)
for fn in unexpected_files:
assert not os.path.isfile(fn), f"File {fn} found, but it should not be present with action=model"
assert not os.path.isfile(fn), "File {0} found, but it should not be present with action=model".format(fn)

def exercise_5():
"""
Expand Down

0 comments on commit a71e4e2

Please sign in to comment.