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

@@ -7,7 +7,6 @@ class Charset:
def __init__(self, id, name, collation, is_default): ...
class Charsets:
def __init__(self): ...
def add(self, c): ...
def by_id(self, id): ...
def by_name(self, name): ...