Skip to content

Commit

Permalink
refactor: ✏️ Fix typo in attribute name
Browse files Browse the repository at this point in the history
  • Loading branch information
egrelier committed Sep 11, 2023
1 parent 9bbc3e8 commit a118d9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion thermal_events/thermal_event_instance.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ class ThermalEventInstance(Base):
id = Column(
BigIntegerType, primary_key=True, autoincrement=True, index=True, unique=True
)
thermal_evend_id = Column(
thermal_event_id = Column(
BigIntegerType,
ForeignKey("thermal_events.id", onupdate="CASCADE", ondelete="CASCADE"),
index=True,
Expand Down

0 comments on commit a118d9a

Please sign in to comment.