Skip to content

Commit

Permalink
fix: Fix definitions.py with new definition (#2541)
Browse files Browse the repository at this point in the history
Signed-off-by: Kevin Zhang <kzhang@tecton.ai>
  • Loading branch information
kevjumba committed Apr 13, 2022
1 parent 57a97d8 commit eefc34a
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,11 @@

input_request = RequestSource(
name="vals_to_add",
schema={"val_to_add": ValueType.INT64, "val_to_add_2": ValueType.INT64},
schema=[
Field(name="val_to_add", dtype=Int64),
Field(name="val_to_add_2", dtype=Int64),
Field(name="avg_daily_trips", dtype=Int64),
],
)


Expand Down

0 comments on commit eefc34a

Please sign in to comment.