Skip to content

Commit 586942e

Browse files
committed
Cast arguments to int in fetch_commits_for_month.py
1 parent 9a150c5 commit 586942e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fetch_commits_for_month.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ def fetch_and_parse_commits_for_month(year, month):
2727

2828

2929
if __name__ == '__main__':
30-
fetch_and_parse_commits_for_month(sys.argv[1], sys.argv[2])
30+
fetch_and_parse_commits_for_month(int(sys.argv[1]), int(sys.argv[2]))

0 commit comments

Comments
 (0)