Skip to content

Commit

Permalink
use kwargs func call
Browse files Browse the repository at this point in the history
  • Loading branch information
sebhahn committed Mar 26, 2024
1 parent 5594f00 commit f4b9924
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ascat/file_handling.py
Original file line number Diff line number Diff line change
Expand Up @@ -759,9 +759,9 @@ def search_period(
for dt_cur in np.arange(dt_start, dt_end, dt_delta).astype(datetime):
files, dates = self.search_date(
dt_cur,
search_date_fmt,
date_field,
date_field_fmt,
search_date_fmt=search_date_fmt,
date_field=date_field,
date_field_fmt=date_field_fmt,
return_date=True)
for f, dt in zip(files, dates):
if f not in filenames and dt >= dt_start and dt < dt_end:
Expand Down

0 comments on commit f4b9924

Please sign in to comment.