Skip to content

Commit

Permalink
Fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
rakow committed Jun 19, 2024
1 parent 66eaf12 commit 947b1e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion matsim/calibration/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def convert(cls, arg) -> pd.DataFrame:
if arg.endswith(".csv"):
return pd.read_csv(arg)

raise ValueError(f"Input {path} of {type(path)} is not supported. Use csv or dataframes, or implement custom conversion method.")
raise ValueError(f"Input {arg} of type {type(arg)} is not supported. Use csv or dataframes, or implement custom conversion method.")

@staticmethod
def get_mode_params(config: dict, mode: str):
Expand Down

0 comments on commit 947b1e1

Please sign in to comment.