We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
cache_source
1 parent 3c4546b commit 9c4f96dCopy full SHA for 9c4f96d
1 file changed
src/ninetoothed/generation.py
@@ -834,7 +834,7 @@ def visit_Call(self, node):
834
835
def cache_source(source):
836
digest = hashlib.sha256(source.encode("utf-8")).hexdigest()
837
- cache_file = CACHE_DIR / f"{digest}.py"
+ cache_file = CACHE_DIR / f"_{digest}.py"
838
839
if not cache_file.exists():
840
with open(cache_file, "w", encoding="utf-8") as f:
0 commit comments