Skip to content

Commit

Permalink
update for mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
lilydjwg committed Jan 4, 2022
1 parent 810da06 commit 23eefde
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions mypy.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ show_column_numbers = True
no_implicit_optional = True
mypy_path = /home/lilydjwg/scripts/python/pylib:../lilac:../lilac/vendor

[mypy-toposort]
ignore_missing_imports = True

[mypy-pyalpm]
ignore_missing_imports = True

Expand All @@ -25,3 +22,6 @@ ignore_missing_imports = True
[mypy-zstandard]
ignore_missing_imports = True

[mypy-tomli_w]
ignore_missing_imports = True

2 changes: 1 addition & 1 deletion webhooks/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def __new__(
return getattr(cls, ty)

inst = super().__new__(cls)
inst.__init__(ty, dependents)
inst.__init__(ty, dependents) # type: ignore
return inst

def __init__(
Expand Down

0 comments on commit 23eefde

Please sign in to comment.