Skip to content

Commit 98bfafa

Browse files
authored
Merge pull request #1705 from krakken190/main
Fix: Resolve Python 3.8 Compatibility Issue in semantic_layer_schema.py
2 parents cd68a1d + 3208351 commit 98bfafa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandasai/data_loader/semantic_layer_schema.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ def _validate_columns_relations(self):
391391
)
392392
return self
393393

394-
def to_dict(self) -> dict[str, Any]:
394+
def to_dict(self) -> Dict[str, Any]:
395395
return self.model_dump(exclude_none=True, by_alias=True)
396396

397397
def to_yaml(self) -> str:

0 commit comments

Comments
 (0)