Skip to content

Commit d3b7592

Browse files
committed
Format with black==24.8.0
1 parent e3d84ef commit d3b7592

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

datajoint/fetch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ def __call__(
136136
format=None,
137137
as_dict=None,
138138
squeeze=False,
139-
download_path="."
139+
download_path=".",
140140
):
141141
"""
142142
Fetches the expression results from the database into an np.array or list of dictionaries and

datajoint/s3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def __init__(
2727
*,
2828
secure=False,
2929
proxy_server=None,
30-
**_
30+
**_,
3131
):
3232
# from https://docs.min.io/docs/python-client-api-reference
3333
self.client = minio.Minio(

tests/test_cli.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,5 +104,8 @@ class IJ(dj.Lookup):
104104
]
105105

106106
cleaned = stdout.strip(" >\t\n\r")
107-
for key in ("test_schema", "Schema `djtest_cli`",):
107+
for key in (
108+
"test_schema",
109+
"Schema `djtest_cli`",
110+
):
108111
assert key in cleaned, f"Key {key} not found in config from stdout: {cleaned}"

0 commit comments

Comments
 (0)