Skip to content

Commit

Permalink
Use f-string in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
zeezdev committed Oct 23, 2023
1 parent 41bb479 commit 51f4e56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1113,7 +1113,7 @@ applications.
for future in concurrent.futures.as_completed(future_to_uid):
uid = future_to_uid[future]
response = future.result()
print("%s updated with %d status code" % (uid, response.status_code))
print(f"{uid} updated with {response.status_code} status code")
assert len(responses.calls) == 3 # total calls count
Expand Down

0 comments on commit 51f4e56

Please sign in to comment.