Skip to content

Commit

Permalink
Remove incorrect log message (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
lloesche authored Oct 11, 2024
1 parent a1765af commit c3b83c7
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions fixattiosync/fixdata.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,6 @@ def hydrate(self) -> None:
if row["user_id"] in self.__users:
user = self.__users[row["user_id"]]
user.notification_settings = FixUserNotificationSettings(**row)
else:
log.error(f"Data error: notification settings for user {row['user_id']} not found")
with self.conn.cursor(row_factory=dict_row) as cursor:
cursor.execute('SELECT * FROM public."cloud_account";')
rows = cursor.fetchall()
Expand Down

0 comments on commit c3b83c7

Please sign in to comment.