lib.App: Fix misc mypy errors
Fix fallout created by enabling the "strict" option:
lib/App.py:196: error: Class cannot subclass
"BaseCompleter" (has type "Any") [misc]
Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
parent
989b800906
commit
fd521cb2a9
1 changed files with 1 additions and 1 deletions
|
|
@ -193,7 +193,7 @@ class App: # export
|
|||
BaseCompleter
|
||||
)
|
||||
|
||||
class NoopCompleter(BaseCompleter):
|
||||
class NoopCompleter(BaseCompleter): # type: ignore[misc, unused-ignore]
|
||||
|
||||
@override
|
||||
def __call__( # pyright: ignore[reportGeneralTypeIssues]
|
||||
|
|
|
|||
Loading…
Reference in a new issue