Skip to content

Commit 0cdf55a

Browse files
Tim O'FarrellTim O'Farrell
Tim O'Farrell
authored and
Tim O'Farrell
committed
Lint, Black and Code fixes
1 parent 094c544 commit 0cdf55a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
from abc import ABC
2-
from dataclasses import dataclass
1+
from abc import ABC, abstractmethod
32

43

5-
@dataclass(frozen=True)
4+
# pylint: disable=R0903
65
class SchemaValidatorABC(ABC):
76
property_name: str
87

8+
@abstractmethod
99
def validate(self, validator, aP, instance, schema):
1010
"""Validate this property"""

0 commit comments

Comments
 (0)