about summary refs log tree commit diff
path: root/fscache.py
diff options
context:
space:
mode:
Diffstat (limited to 'fscache.py')
-rw-r--r--fscache.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/fscache.py b/fscache.py
index d52ff62..b6d164b 100644
--- a/fscache.py
+++ b/fscache.py
@@ -15,7 +15,6 @@ class Cache:
         self.cache_dir.mkdir(exist_ok=True)
 
     def write(self, key, value):
-        # TODO gracefully handle keys with '/' by creating directories or rewriting
         loc = self.cache_dir/key
         loc.write_text(value, errors='ignore')