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

@@ -13,7 +13,6 @@ class ExceptionSaver:
def run_setup(setup_script, args): ...
class AbstractSandbox:
def __init__(self) -> None: ...
def __enter__(self) -> None: ...
def __exit__(self, exc_type, exc_value, traceback) -> None: ...
def run(self, func): ...