Skip to content

Commit d3e5e6f

Browse files
fix for python 3.9
1 parent 886616f commit d3e5e6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

codeflash/models/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ def get_code_block_splitter(file_path: Path) -> str:
148148

149149
class CodeStringsMarkdown(BaseModel):
150150
code_strings: list[CodeString] = []
151-
cached_code: str | None = None
151+
cached_code: Optional[str] = None
152152

153153
@property
154154
def __str__(self) -> str:

0 commit comments

Comments
 (0)