Skip to content

Commit e7ed01f

Browse files
author
Sven Groot
committed
Fix abstract base class without abstract method B024
1 parent 2b7ac49 commit e7ed01f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

inertia/prop_classes.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from abc import ABC, abstractmethod
22

33

4-
class CallableProp(ABC):
4+
class CallableProp:
55
def __init__(self, prop):
66
self.prop = prop
77

@@ -15,7 +15,7 @@ def should_merge(self):
1515
pass
1616

1717

18-
class IgnoreOnFirstLoadProp(ABC):
18+
class IgnoreOnFirstLoadProp:
1919
pass
2020

2121

0 commit comments

Comments
 (0)