Skip to content

Commit

Permalink
Fixed mypy type on mirror list
Browse files Browse the repository at this point in the history
  • Loading branch information
Torxed committed Nov 9, 2024
1 parent 862b4ca commit 8adff2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion archinstall/lib/mirrors.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def parse_args(cls, args: List[Dict[str, str]]) -> List['CustomMirror']:

@dataclass
class MirrorConfiguration:
mirror_regions: Dict[str, List[str]] = field(default_factory=dict)
mirror_regions: Dict[str, List[MirrorStatusEntryV3]] = field(default_factory=dict)
custom_mirrors: List[CustomMirror] = field(default_factory=list)

@property
Expand Down

0 comments on commit 8adff2f

Please sign in to comment.