Remove bare incompletes (#11670)

This commit is contained in:
Sebastian Rittau
2024-03-31 03:35:57 +02:00
committed by GitHub
parent 33de88879f
commit 027115e624
10 changed files with 28 additions and 20 deletions

View File

@@ -60,7 +60,7 @@ class DOMBuilder:
def supportsFeature(self, name: str) -> bool: ...
def canSetFeature(self, name: str, state: int) -> bool: ...
# getFeature could return any attribute from an instance of `Options`
def getFeature(self, name: str) -> Incomplete: ...
def getFeature(self, name: str): ...
def parseURI(self, uri: str) -> ExpatBuilder | ExpatBuilderNS: ...
def parse(self, input: DOMInputSource) -> ExpatBuilder | ExpatBuilderNS: ...
# `input` and `cnode` argtypes for `parseWithContext` are unknowable