Skip to content

Commit bc43a32

Browse files
authored
Merge pull request #178 from jwilk-forks/notimplementederror
Fix exception raising in BaseCache
2 parents 0488eca + bd94f7e commit bc43a32

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cachecontrol/cache.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88
class BaseCache(object):
99

1010
def get(self, key):
11-
raise NotImplemented()
11+
raise NotImplementedError()
1212

1313
def set(self, key, value):
14-
raise NotImplemented()
14+
raise NotImplementedError()
1515

1616
def delete(self, key):
17-
raise NotImplemented()
17+
raise NotImplementedError()
1818

1919
def close(self):
2020
pass

0 commit comments

Comments
 (0)