Skip to content

Commit

Permalink
mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
sanderegg committed Jun 9, 2023
1 parent 085d736 commit 58c7cf0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,5 +64,5 @@ def register_modified_datetime_auto_update_trigger(table: sa.Table) -> None:
)

# REGISTER THEM PROCEDURES/TRIGGERS
sa.event.listen(table, "after_create", update_modified_timestamp_procedure) # type: ignore
sa.event.listen(table, "after_create", modified_timestamp_trigger) # type: ignore
sa.event.listen(table, "after_create", update_modified_timestamp_procedure)
sa.event.listen(table, "after_create", modified_timestamp_trigger)

0 comments on commit 58c7cf0

Please sign in to comment.