Skip to content
Prev Previous commit
Next Next commit
Fix lint
Signed-off-by: Kevin Zhang <kzhang@tecton.ai>
  • Loading branch information
kevjumba committed Apr 21, 2022
commit 3742cf1990fdadae866b0b7892f5332af70da87c
4 changes: 2 additions & 2 deletions sdk/python/feast/on_demand_feature_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class OnDemandFeatureView(BaseFeatureView):
owner: str

@log_exceptions
def __init__(
def __init__( # noqa: C901
self,
*args,
name: Optional[str] = None,
Expand All @@ -85,7 +85,7 @@ def __init__(
description: str = "",
tags: Optional[Dict[str, str]] = None,
owner: str = "",
): # noqa: C901
):
"""
Creates an OnDemandFeatureView object.

Expand Down