We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2545c5 commit d049a8dCopy full SHA for d049a8d
1 file changed
codetide/__init__.py
@@ -94,7 +94,7 @@ def serialize(self, filepath :Optional[Union[str, Path]]=DEFAULT_SERIALIZATION_P
94
os.makedirs(os.path.split(filepath)[0], exist_ok=True)
95
writeFile(self.model_dump_json(indent=4), filepath)
96
if include_codebase_cached_elements or include_cached_ids:
97
- dir_path = Path(os.path.split(filepath))[0]
+ dir_path = Path(os.path.split(filepath)[0])
98
if include_codebase_cached_elements:
99
cached_elements_path = dir_path / DEFAULT_CACHED_ELEMENTS_FILE
100
writeFile(self.codebase.serialize_cache_elements(), cached_elements_path)
0 commit comments