no need to use f-string

This commit is contained in:
giacomo 2022-04-28 14:52:08 +01:00 committed by Pavel Minaev
parent a9a170bd63
commit 644c658e75

View file

@ -666,7 +666,7 @@ class TestTypeConversion(object):
for val_trial, type_trial in correct_trials:
assert isinstance(
json.of_type(type_trial)(val_trial), type_trial
), f"Wrong type coversion"
), "Wrong type coversion"
# test conversion that are not expected to work
try: