Skip to content
Prev Previous commit
Next Next commit
Trying to fix the lint error after python upgrade. -
error: Call to abstract method "__init__" of "Provider" with trivial body via super() is unsafe  [safe-super]

Signed-off-by: Lokesh Rangineni <lokeshforjava@gmail.com>
  • Loading branch information
lokeshrangineni committed Apr 30, 2024
commit a53708e70033d921b4ed935609fd93e40594b60e
2 changes: 0 additions & 2 deletions sdk/python/feast/infra/passthrough_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,6 @@ class PassthroughProvider(Provider):
"""

def __init__(self, config: RepoConfig):
super().__init__(config)

self.repo_config = config
self._offline_store = None
self._online_store = None
Expand Down