Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelbray32 committed Sep 4, 2024
1 parent ed5395b commit 138371f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/spyglass/utils/dj_merge_tables.py
Original file line number Diff line number Diff line change
Expand Up @@ -540,9 +540,9 @@ def fetch_nwb(
self & {self._reserved_sk: source} & restriction
).fetch("KEY")
nwb_list.extend(
(self & source_restr).merge_restrict_class(
restriction, permit_multiple_rows=True
).fetch_nwb()
(self & source_restr)
.merge_restrict_class(restriction, permit_multiple_rows=True)
.fetch_nwb()
)
if return_merge_ids:
merge_ids.extend([k[self._reserved_pk] for k in source_restr])
Expand Down

0 comments on commit 138371f

Please sign in to comment.