Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed mypy type on mirror list
Browse files Browse the repository at this point in the history
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
@@ -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

0 comments on commit 8adff2f

Please sign in to comment.