Skip to content

Commit

Permalink
fix: Typo in using f-string
Browse files Browse the repository at this point in the history
  • Loading branch information
rapsealk committed Mar 4, 2024
1 parent 9e56e54 commit e832d80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ai/backend/client/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ async def _negotiate_api_version(
)
if server_version < MIN_API_VERSION:
warnings.warn(
"The server is too old ({server_version}) and does not meet the minimum API version"
f"The server is too old ({server_version}) and does not meet the minimum API version"
f" requirement: v{MIN_API_VERSION[0]}.{MIN_API_VERSION[1]}\nPlease upgrade"
" the server or downgrade/reinstall the client SDK with the same"
" major.minor release of the server.",
Expand Down

0 comments on commit e832d80

Please sign in to comment.