Skip to content

Commit 6866f92

Browse files
committed
Flake8 fix
1 parent cbe1d88 commit 6866f92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/servicex_did_finder_lib/did_finder_app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def do_lookup(self, did: str, dataset_id: int, endpoint: str, user_did_finder: U
100100
if did_info.file_count == -1:
101101
acc.send_on(-1) # if looking up full dataset, can send partial results
102102

103-
if did_info.file_count > 0: # otherwise wait until all files arrive, then limit results
103+
if did_info.file_count > 0: # otherwise wait until all files arrive then limit results
104104
acc.send_on(did_info.file_count)
105105
except Exception:
106106
# noinspection PyTypeChecker

0 commit comments

Comments
 (0)