1 parent b5b48b1 commit 8e53f80Copy full SHA for 8e53f80
1 file changed
sqlalchemy_utils/types/encrypted/padding.py
@@ -11,10 +11,10 @@ class Padding(object):
11
def __init__(self, block_size):
12
self.block_size = block_size
13
14
- def pad(value):
+ def pad(self, value):
15
raise NotImplementedError('Subclasses must implement this!')
16
17
- def unpad(value):
+ def unpad(self, value):
18
19
20
0 commit comments