Skip to content

Commit

Permalink
fix python 3.8 list type
Browse files Browse the repository at this point in the history
  • Loading branch information
sam-kleiner committed Jul 30, 2024
1 parent f3505df commit b9d661f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions whoisit/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
IPv4Network,
IPv6Network
)
from typing import Optional
from typing import Optional, List
from typing_extensions import TypedDict

from dateutil.parser import parse as dateutil_parse
Expand Down Expand Up @@ -39,7 +39,7 @@ class VCardArrayDataDict(TypedDict, total=False):
name: str
email: str
tel: str
address: list[str]
address: List[str]


class VCardArrayAddressDataDict(TypedDict, total=False):
Expand Down

0 comments on commit b9d661f

Please sign in to comment.