Skip to content

Commit

Permalink
shorter print
Browse files Browse the repository at this point in the history
  • Loading branch information
rakow committed Oct 24, 2023
1 parent 0de6770 commit 7d3f0c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion matsim/scenariogen/data/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def read_all(dirs: Union[str, List[str]], regio=None) -> Tuple[pd.DataFrame]:
raise ValueError("File structure is wrong. Need exactly %d files per region." % format.INPUT_FILES)

for input_files in _batch(files, format.INPUT_FILES):
print("Reading", format, *input_files)
print("Reading", format.__name__, *input_files)

data = format.read_raw(*input_files)
df = format.convert(data, regio)
Expand Down

0 comments on commit 7d3f0c1

Please sign in to comment.