Skip to content

Commit

Permalink
style: replace double-quotes with single-quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
annehaley committed Mar 29, 2024
1 parent 07ca7a4 commit 5e8d2f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions shapeworks_cloud/manage_workers.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ def inspect_queue(queue_name):
# Override manager hostname and vhost in production;
# CloudAMQP management not served through dedicated port and must use https
# and vhost is assigned name of user (instead of using default '/')
manager.http.base_url = manager.http.base_url.replace(":15672", "").replace(
"http", "https"
manager.http.base_url = manager.http.base_url.replace(':15672', '').replace(
'http', 'https'
)
vhost = manager.user
queue = manager.get_queue(vhost, queue_name)
Expand Down

0 comments on commit 5e8d2f6

Please sign in to comment.