Remove empty __init__ methods from classes with 0 parents (#8907)

This commit is contained in:
Nikita Sobolev
2022-10-16 14:47:47 +03:00
committed by GitHub
parent 208c09044c
commit 3e828bd307
19 changed files with 0 additions and 21 deletions

View File

@@ -133,7 +133,6 @@ def defaultSerialize(obj, buf, lineLength): ...
class Stack:
stack: Any
def __init__(self) -> None: ...
def __len__(self): ...
def top(self): ...
def topName(self): ...

View File

@@ -12,7 +12,6 @@ class Behavior:
allowGroup: bool
forceUTC: bool
sortFirst: Any
def __init__(self) -> None: ...
@classmethod
def validate(cls, obj, raiseException: bool = ..., complainUnrecognized: bool = ...): ...
@classmethod