Skip to content

Commit

Permalink
Add missing f in f-string
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanv committed Jan 16, 2024
1 parent 1980f8d commit b54faa1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/team_query.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def api(query):
if request.status_code == 200:
return request.json()
else:
raise RuntimeError("Request received HTTP {request.status_code}: {query}")
raise RuntimeError(f"Request received HTTP {request.status_code}: {query}")


parser = argparse.ArgumentParser(description="Generate team gallery from GitHub")
Expand Down

0 comments on commit b54faa1

Please sign in to comment.