Skip to content

Commit a23ad8d

Browse files
committed
style: fix ruff-format slice spacing
1 parent edb9545 commit a23ad8d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/datajoint/gc.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ def list_hash_paths(self, schema_name: str) -> dict[str, int]:
209209
if not _BASE32_HASH.match(filename):
210210
continue
211211
file_path = f"{root}/{filename}"
212-
relative_path = file_path[len(full_root):].lstrip("/")
212+
relative_path = file_path[len(full_root) :].lstrip("/")
213213
try:
214214
stored[relative_path] = self.backend.fs.size(file_path)
215215
except Exception as e:
@@ -258,7 +258,7 @@ def list_schema_paths(self, schema_name: str) -> dict[str, int]:
258258
# reclaimed with it. _is_covered() keeps a live object's
259259
# manifest out of the orphan set.
260260
file_path = f"{root}/{filename}"
261-
relative_path = file_path[len(full_root):].lstrip("/")
261+
relative_path = file_path[len(full_root) :].lstrip("/")
262262
try:
263263
stored[relative_path] = self.backend.fs.size(file_path)
264264
except Exception as e:

0 commit comments

Comments
 (0)