diff --git a/scl.py b/scl.py index 01a8804..7944a57 100644 --- a/scl.py +++ b/scl.py @@ -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")