You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
raiseOSError("Could not load EDF api: %s"%why_not)
can be replaced with
f"Could not load EDF api: {why_not}"
A lot of this codebase was written before f-strings were introduced (python 3.6). Since we require at least python 3.9 we can replace these with f-strings, which I think looks nicer.
The text was updated successfully, but these errors were encountered:
e.g. this:
eyelinkio/src/eyelinkio/edf/read.py
Line 75 in c3afb9a
can be replaced with
f"Could not load EDF api: {why_not}"
A lot of this codebase was written before f-strings were introduced (python 3.6). Since we require at least python 3.9 we can replace these with f-strings, which I think looks nicer.
The text was updated successfully, but these errors were encountered: