Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
dperl-dls committed Jul 5, 2024
1 parent 4ed095c commit 85e04f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/daq_config_server/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def _get(
)
complete_req = self._uri_prefix + endpoint + req_item + req_ops
conn.connect()
conn.request("GET", complete_req )
conn.request("GET", complete_req)
resp = conn.getresponse()
assert resp.status == 200, f"Failed to get response: {resp!r}"
body = json.loads(resp.read())
Expand Down

0 comments on commit 85e04f3

Please sign in to comment.