Skip to content

Commit 87ca51d

Browse files
authored
Merge pull request #46 from Aparna-BS/fixer
Fixing signature of base __call__ method.
2 parents f2c8f1c + 052fbfa commit 87ca51d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyvalid/validators/__base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def checkers(self):
2727
raise NotImplementedError
2828

2929
@abstractmethod
30-
def __call__(self):
30+
def __call__(self, val):
3131
raise NotImplementedError
3232

3333
def __init__(self):

0 commit comments

Comments
 (0)