Skip to content

Commit

Permalink
Don't use = in fstring debugs for Py3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
iamkroot committed Oct 8, 2023
1 parent 9a99f17 commit c66d243
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trakt_scrobbler/mediainfo_remap.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def validate(cls, v):
end = int(m["end"])
except KeyError:
end = start
assert start <= end, f"Got {start=} > {end=}"
assert start <= end, f"Got start={start} > end={end}"
return cls(start, end)
else:
raise TypeError("Expected int or string range")
Expand Down

0 comments on commit c66d243

Please sign in to comment.