File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ def __init__(
5151 # Validate that the provided engine matches the detected engine
5252 if engine != detected_engine :
5353 raise ValueError (
54- f"Provided engine '{ engine } ' does not match detected engine '{ detected_engine } ' "
54+ f"Provided engine '{ engine . value } ' does not match detected engine '{ detected_engine . value } ' "
5555 f"for data type { type (data ).__name__ } "
5656 )
5757 self ._engine = engine
@@ -84,7 +84,7 @@ def engine(self) -> DataFrameEngine:
8484 return self ._engine
8585
8686 def __repr__ (self ):
87- return f"FeastDataFrame(engine={ self .engine } , type={ type (self .data ).__name__ } )"
87+ return f"FeastDataFrame(engine={ self .engine . value } , type={ type (self .data ).__name__ } )"
8888
8989 @property
9090 def is_lazy (self ) -> bool :
You can’t perform that action at this time.
0 commit comments