Skip to content

Commit

Permalink
Remove obsolete type: ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
AMDmi3 committed Nov 13, 2023
1 parent 9331886 commit cc5b814
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion repology/packagemaker/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ def add_links(self, link_type: int, *args: Any) -> None:
urls = self._normalize_args(args, 'link', str, link_normalizers)

if urls:
self._package.links.extend((link_type, *url.rstrip('#').split('#', 1)) for url in urls) # type: ignore
self._package.links.extend((link_type, *url.rstrip('#').split('#', 1)) for url in urls)

def set_flags(self, mask: int, is_set: bool = True) -> None:
if is_set:
Expand Down

0 comments on commit cc5b814

Please sign in to comment.