Remove empty __init__ methods (#8816)

This commit is contained in:
Nikita Sobolev
2022-09-30 13:08:41 +01:00
committed by GitHub
parent deff426b6f
commit 380022c650
33 changed files with 1 additions and 44 deletions
-1
View File
@@ -9,7 +9,6 @@ class ErrorHandler:
def warning(self, exception: BaseException) -> None: ...
class ContentHandler:
def __init__(self) -> None: ...
def setDocumentLocator(self, locator): ...
def startDocument(self): ...
def endDocument(self): ...
-1
View File
@@ -1,7 +1,6 @@
from collections.abc import Mapping
class XMLReader:
def __init__(self) -> None: ...
def parse(self, source): ...
def getContentHandler(self): ...
def setContentHandler(self, handler): ...