We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 604c868 commit c55d760Copy full SHA for c55d760
1 file changed
reflex/utils/decorator.py
@@ -76,6 +76,7 @@ def wrapper(*args: P.args, **kwargs: P.kwargs) -> T:
76
def _write_cached_procedure_file(payload: str, cache_file: Path, value: object):
77
import pickle
78
79
+ cache_file.parent.mkdir(parents=True, exist_ok=True)
80
cache_file.write_bytes(pickle.dumps((payload, value)))
81
82
0 commit comments