Correct user to SclOutage

This commit is contained in:
Liam Steckler 2024-01-13 14:35:08 -08:00
parent 1c41baacb4
commit 1b1753ae52

2
scl.py
View file

@ -49,7 +49,7 @@ class SclOutage(Base):
) # If the event is no longer being returned in the response, this will be set to the current time
def __repr__(self) -> str:
return f"User(scl_outage_id={self.scl_outage_id!r}, most_recent_post_id={self.most_recent_post_id!r}, last_updated_time={self.last_updated_time!r}, no_longer_in_response_time={self.no_longer_in_response_time!r})"
return f"SclOutage(scl_outage_id={self.scl_outage_id!r}, most_recent_post_id={self.most_recent_post_id!r}, last_updated_time={self.last_updated_time!r}, no_longer_in_response_time={self.no_longer_in_response_time!r})"
engine = create_engine("sqlite:///scl.db")