Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
dtdang committed Dec 19, 2024
1 parent e541dc9 commit 0f3a506
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion silverback/cluster/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ def variable_groups(self) -> dict[str, VariableGroup]:
return {vg.name: vg for vg in map(VariableGroup.model_validate, response.json())}

def new_variable_group(self, name: str, variables: dict[str, str]) -> VariableGroup:
response = self.post("/vars", params={"name": name}, json=variables)
response = self.post("/vars", params={"name": name}, json=variables)
handle_error_with_response(response)
return VariableGroup.model_validate(response.json())

Expand Down

0 comments on commit 0f3a506

Please sign in to comment.