Skip to content

Commit

Permalink
Set the parent type of LiverySet correctly.
Browse files Browse the repository at this point in the history
  • Loading branch information
DanAlbert committed May 11, 2023
1 parent 9143b01 commit 112b5c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dcs/liveries_scanner.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def valid_for_country(self, country: str) -> bool:
return self.countries is None or country in self.countries


class LiverySet(set):
class LiverySet(Set[Livery]):
unit_livery_id: Optional[str] = None

def __init__(self, unit_livery_id: Optional[str] = None) -> None:
Expand Down

0 comments on commit 112b5c4

Please sign in to comment.