Skip to content

Commit

Permalink
Flake8 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ponyisi committed Nov 13, 2024
1 parent cbe1d88 commit 6866f92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/servicex_did_finder_lib/did_finder_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def do_lookup(self, did: str, dataset_id: int, endpoint: str, user_did_finder: U
if did_info.file_count == -1:
acc.send_on(-1) # if looking up full dataset, can send partial results

if did_info.file_count > 0: # otherwise wait until all files arrive, then limit results
if did_info.file_count > 0: # otherwise wait until all files arrive then limit results
acc.send_on(did_info.file_count)
except Exception:
# noinspection PyTypeChecker
Expand Down

0 comments on commit 6866f92

Please sign in to comment.