Skip to content

Commit 59bbc66

Browse files
committed
Changed the self argument to cls according to the @classmethod decorator
1 parent cd7821e commit 59bbc66

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gpoa/frontend/applier_frontend.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@ def check_enabled(storage, module_name, is_experimental):
6767

6868
class ApplierFrontend(ABC):
6969
@classmethod
70-
def __init__(self, regobj):
70+
def __init__(cls, regobj):
7171
pass
7272

7373
@classmethod
74-
def apply(self):
74+
def apply(cls):
7575
pass

0 commit comments

Comments
 (0)