Skip to content

Commit 20304ba

Browse files
committed
refactor code
Signed-off-by: Nmroth42 <mannoroth42@gmail.com>
1 parent 517eac4 commit 20304ba

File tree

1 file changed

+4
-1
lines changed
  • sdk/python/feast/infra/registry

1 file changed

+4
-1
lines changed

sdk/python/feast/infra/registry/sql.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -691,7 +691,10 @@ def _apply_object(
691691
}
692692
update_stmt = (
693693
update(table)
694-
.where(getattr(table.c, id_field_name) == name, table.c.project_id == project)
694+
.where(
695+
getattr(table.c, id_field_name) == name,
696+
table.c.project_id == project,
697+
)
695698
.values(
696699
values,
697700
)

0 commit comments

Comments
 (0)