about summary refs log tree commit diff
path: root/fscache.py
diff options
context:
space:
mode:
authorStarfall <us@starfall.systems>2022-12-12 14:27:43 -0600
committerStarfall <us@starfall.systems>2022-12-12 14:27:43 -0600
commitf7d69f5948f708388df81f76b62dcc11b857dea3 (patch)
treec07fb68d80e244bcdf1cbd0769d95db14587b64f /fscache.py
parent4e912789e44b68aeda7cd505ee63b5f7ca27e952 (diff)
add README.md
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')