We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0de11a5 commit 4bf9130Copy full SHA for 4bf9130
.gitignore
@@ -127,3 +127,5 @@ dmypy.json
127
128
# Pyre type checker
129
.pyre/
130
+
131
+ip_cache/
src/baskerville/models/request_set_cache.py
@@ -71,11 +71,6 @@ def __init__(
71
else:
72
self.storage_df = None
73
74
- if self.file_manager.path_exists(self.file_name):
75
- self.file_manager.delete_path(self.file_name)
76
- if self.file_manager.path_exists(self.temp_file_name):
77
- self.file_manager.delete_path(self.temp_file_name)
78
-
79
@property
80
def cache(self):
81
return self.__cache
0 commit comments