Skip to content

Commit aafbd31

Browse files
committed
fix settings command
1 parent 348ea3c commit aafbd31

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/bma_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def get_server_settings(self) -> dict[str, dict[str, dict[str, list[str]]]]:
8484
r = self.client.get(
8585
self.base_url + "/api/v1/json/jobs/settings/",
8686
).raise_for_status()
87-
self.settings = r.json()["bma_response"]["settings"]
87+
self.settings = r.json()["bma_response"]
8888
return r.json()
8989

9090
def get_jobs(self, job_filter: str = "?limit=0") -> list[dict[str, str]]:

0 commit comments

Comments
 (0)