Skip to content

Commit

Permalink
fixed more typing issues with python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
infinityofspace committed Sep 15, 2024
1 parent c238ddb commit cf9b05d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkb_client/client/bind_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def __str__(self):
class BindFile:
origin: str
ttl: Optional[int] = None
records: list[BindRecord]
records: List[BindRecord]

def __init__(self, origin: str, ttl: Optional[int] = None, records: Optional[List[BindRecord]] = None) -> None:
self.origin = origin
Expand Down

0 comments on commit cf9b05d

Please sign in to comment.