Skip to content

Commit

Permalink
Typing fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AMDmi3 committed Oct 24, 2024
1 parent 2398724 commit 740c83f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions repology/parsers/parsers/repodata.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ def iter_parse(self, path: str, factory: PackageFactory) -> Iterable[PackageMake
skipped_archs: dict[str, int] = Counter()

skipped_provides_without_version = 0
skipped_provides_without_version_sample = set()
skipped_provides_without_version_sample: set[str] = set()
skipped_provides_with_parentheses = 0
skipped_provides_with_parentheses_sample = set()
skipped_provides_with_parentheses_sample: set[str] = set()
has_provides = False

if self._arch_from_filename:
Expand Down

0 comments on commit 740c83f

Please sign in to comment.