Skip to content

Commit

Permalink
temporary fix for #277
Browse files Browse the repository at this point in the history
  • Loading branch information
Jhsmit committed Apr 11, 2022
1 parent bf47636 commit 0894e89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyhdx/batch_processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def load_data(self, *filenames: os.PathLike, reader='dynamx') -> pd.DataFrame:
input_files = [self.data_src / filename for filename in filenames]
df = read_func(*input_files)
else:
input_stringios = [self.data_src[filename] for filename in filenames]
input_stringios = [self.data_src[Path(filename).name] for filename in filenames]
df = read_func(*input_stringios)
for io in input_stringios:
io.seek(0)
Expand Down

0 comments on commit 0894e89

Please sign in to comment.