Skip to content

Commit

Permalink
Merge pull request #3 from MIERUNE/chore
Browse files Browse the repository at this point in the history
fix-wrong-typehint
  • Loading branch information
Kanahiro authored Jul 7, 2023
2 parents 2fe5c19 + 57e5fc1 commit 479af5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gtfs_parser/gtfs.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import pandas as pd


def GTFS(gtfs_dir: list) -> dict:
def GTFS(gtfs_dir: str) -> dict:
tables = {}
table_files = glob.glob(os.path.join(gtfs_dir, "*.txt"))
for table_file in table_files:
Expand Down

0 comments on commit 479af5c

Please sign in to comment.