Skip to content

Commit

Permalink
tox: Fix warnings reported by PyLint 2.11.0
Browse files Browse the repository at this point in the history
Formatting a regular string which could be a f-string
(consider-using-f-string)
  • Loading branch information
fetzerch committed Oct 3, 2021
1 parent dbb76b6 commit 5db901b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sync_music/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def verify_interpreter_version():
version = python_version()
if parse_version(version) < parse_version(minversion): # pragma: no cover
sys.stdout.write(
"Incompatible Python version, minimum supported "
"Incompatible Python version, minimum supported " # pylint: disable=consider-using-f-string
"version {}, found version {}\n".format(minversion, version)
)
sys.exit(1)
Expand Down

0 comments on commit 5db901b

Please sign in to comment.