Skip to content

Commit

Permalink
fix: operations url formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
volfpeter committed Dec 10, 2024
1 parent dbe17c5 commit d5c3f47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/sbstudio/api/operations/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def _ask_skybrush_studio_server(
ctx.check_hostname = False
ctx.verify_mode = CERT_NONE
# create request
url = COMMUNITY_SERVER_URL + "/operations/{operation}"
url = COMMUNITY_SERVER_URL + f"/operations/{operation}"
req = Request(url, data=data, headers=headers, method="POST")
# send it and wait for response
log.info(
Expand Down

0 comments on commit d5c3f47

Please sign in to comment.