Skip to content

Commit c938dc6

Browse files
committed
refactor: remove comment
1 parent 4410c2b commit c938dc6

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

sdk/python/feast/data_source.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -815,7 +815,6 @@ def get_table_column_names_and_types(
815815

816816
@staticmethod
817817
def from_proto(data_source: DataSourceProto):
818-
# assert data_source.HasField("batch_source")
819818
batch_source = (
820819
DataSource.from_proto(data_source.batch_source)
821820
if data_source.HasField("batch_source")
@@ -831,8 +830,6 @@ def from_proto(data_source: DataSourceProto):
831830
)
832831

833832
def to_proto(self) -> DataSourceProto:
834-
# batch_source_proto = None
835-
836833
data_source_proto = DataSourceProto(
837834
name=self.name,
838835
type=DataSourceProto.PUSH_SOURCE,

0 commit comments

Comments
 (0)