Skip to content

Commit

Permalink
flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
calum-chamberlain committed Dec 8, 2024
1 parent c776682 commit b45a2c8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions eqcorrscan/core/match_filter/party.py
Original file line number Diff line number Diff line change
Expand Up @@ -944,7 +944,7 @@ def client_lag_calc(
stream=st, pre_processed=False, shift_len=shift_len,
*args, **kwargs)
Logger.debug(f"For {len(chunk)} a catalog of "
f"{len(_picked_catalog)} was returned")
f"{len(_picked_catalog)} was returned")
catalog += _picked_catalog

# 4. Run next group
Expand Down Expand Up @@ -1071,8 +1071,8 @@ def lag_calc(self, stream, pre_processed, shift_len=0.2, min_cc=0.4,
for template_group in template_groups:
family = [_f for _f in self.families
if _f.template == template_group[0]][0]
group_seed_ids = {tr.id for template in template_group
for tr in template.st}
group_seed_ids = {tr.id for _template in template_group
for tr in _template.st}
template_stream = Stream()
for seed_id in group_seed_ids:
net, sta, loc, chan = seed_id.split('.')
Expand Down

0 comments on commit b45a2c8

Please sign in to comment.