Skip to content

Commit

Permalink
Make the linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterKraus committed Mar 28, 2024
1 parent 1ce994b commit eb68479
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/yadg/extractors/public/agilent/dx.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
def extract(
*,
fn: str,
timezone: str,
**kwargs: dict,
) -> DataTree:
zf = zipfile.ZipFile(fn)
Expand All @@ -64,6 +65,6 @@ def extract(
for ffn in os.listdir(tempdir):
if ffn.endswith("CH"):
path = os.path.join(tempdir, ffn)
fdt = extract_ch(fn=path, **kwargs).to_dict()
fdt = extract_ch(fn=path, timezone=timezone, **kwargs).to_dict()
dt = merge_dicttrees(dt, fdt, "identical")
return DataTree.from_dict(dt)

0 comments on commit eb68479

Please sign in to comment.