aboutsummaryrefslogtreecommitdiff
path: root/cachetools/fifo.py
diff options
context:
space:
mode:
Diffstat (limited to 'cachetools/fifo.py')
-rw-r--r--cachetools/fifo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cachetools/fifo.py b/cachetools/fifo.py
index 9f254f1..e7c377e 100644
--- a/cachetools/fifo.py
+++ b/cachetools/fifo.py
@@ -26,6 +26,6 @@ class FIFOCache(Cache):
try:
key = next(iter(self.__order))
except StopIteration:
- raise KeyError('%s is empty' % type(self).__name__) from None
+ raise KeyError("%s is empty" % type(self).__name__) from None
else:
return (key, self.pop(key))