Skip to content

Commit 3bc167f

Browse files
committed
remove undefined *args, **kwargs
1 parent 97f8aaa commit 3bc167f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pyxlma/xarray_util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def get_1d_datasets(d):
4949
returns
5050
a list of single-dimension datasets
5151
"""
52-
return [d1 for d1 in gen_1d_datasets(d, *args, **kwargs)]
52+
return [d1 for d1 in gen_1d_datasets(d)]
5353

5454
def get_scalar_vars(d):
5555
scalars = []

0 commit comments

Comments
 (0)