Skip to content

Commit

Permalink
fix: use typing List instead of builtin list
Browse files Browse the repository at this point in the history
  • Loading branch information
merydian committed Aug 23, 2024
1 parent 4fb4d32 commit 18e5505
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ORStools/common/directions_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ def build_default_parameters(


def get_extra_info_features_directions(
response: dict, extra_info_order: list[str], to_from_values: Optional[list] = None
response: dict, extra_info_order: List[str], to_from_values: Optional[list] = None
):
extra_info_order = [
key if key != "waytype" else "waytypes" for key in extra_info_order
Expand Down

0 comments on commit 18e5505

Please sign in to comment.