Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
fcollman committed Apr 5, 2024
1 parent e1f38e6 commit 21dda3c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion caveclient/jsonservice.py
Original file line number Diff line number Diff line change
Expand Up @@ -367,8 +367,11 @@ def build_neuroglancer_url(
if format_propeties:
url_mapping = self.default_url_mapping
url_mapping["state_id"] = state_id
get_state_url = self._endpoints["get_property"][:-5].format_map(url_mapping)
get_state_url = self._endpoints["get_properties"][:-5].format_map(
url_mapping
)
url = "precomputed://" + auth_text + get_state_url
return url
if static_url:
url = ngl_url + parameter_text + state_id
else:
Expand Down

0 comments on commit 21dda3c

Please sign in to comment.