Skip to content

Commit 409cb39

Browse files
ignorng linter error
Signed-off-by: Francisco Javier Arceo <farceo@redhat.com>
1 parent c5d8a12 commit 409cb39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdk/python/feast/cli/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ def delete(ctx: click.Context, object_id: str):
174174

175175
for getter, obj_type_str in object_getters_and_types:
176176
try:
177-
potential_e = getter(object_id)
177+
potential_e = getter(object_id) # type: ignore[operator]
178178
if potential_e:
179179
e = potential_e
180180
object_type = obj_type_str

0 commit comments

Comments
 (0)