Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardobranco777 committed Sep 6, 2023
1 parent 5ebedac commit 31a0a60
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions bugme.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import os
import json
import sys
from typing import List

from dateutil import parser
from pytz import utc
Expand Down Expand Up @@ -38,8 +39,8 @@ def main() -> None:
"""
Main function
"""
bsc_list: list[int] = []
gh_list: list[GithubIssue] = []
bsc_list: List[int] = []
gh_list: List[GithubIssue] = []

for arg in sys.argv[1:]:
if arg.startswith(("bnc#", "boo#", "bsc#")):
Expand Down

0 comments on commit 31a0a60

Please sign in to comment.