Skip to content

Commit

Permalink
refactor: E501
Browse files Browse the repository at this point in the history
  • Loading branch information
billyrrr committed May 10, 2023
1 parent a42a9d6 commit 878972c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion flasgger/compatible.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@ def get_python_version() -> version.Version:
import sys
version_str = sys.version.split(' ')[0]
if '+' in version_str:
logging.debug(f"version_str: {version_str} interpreted as {version_str.rstrip('+')}")
logging.debug(
f"version_str: {version_str} "
f"interpreted as {version_str.rstrip('+')}"
)
version_str = version_str.rstrip('+')
return version.parse(version_str)

Expand Down

0 comments on commit 878972c

Please sign in to comment.