File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
sdk/python/feast/infra/online_stores Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -336,7 +336,6 @@ class DatastoreTable(InfraObject):
336336 """
337337
338338 project : str
339- name : str
340339 project_id : Optional [str ]
341340 namespace : Optional [str ]
342341
@@ -347,8 +346,8 @@ def __init__(
347346 project_id : Optional [str ] = None ,
348347 namespace : Optional [str ] = None ,
349348 ):
349+ super ().__init__ (name )
350350 self .project = project
351- self .name = name
352351 self .project_id = project_id
353352 self .namespace = namespace
354353
Original file line number Diff line number Diff line change @@ -227,11 +227,10 @@ class DynamoDBTable(InfraObject):
227227 region: The region of the table.
228228 """
229229
230- name : str
231230 region : str
232231
233232 def __init__ (self , name : str , region : str ):
234- self . name = name
233+ super (). __init__ ( name )
235234 self .region = region
236235
237236 def to_infra_object_proto (self ) -> InfraObjectProto :
You can’t perform that action at this time.
0 commit comments