Skip to content

Commit

Permalink
Fix other issues suggested by linter
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Brain <[email protected]>
  • Loading branch information
ABrain7710 committed Jan 23, 2024
1 parent eb3887f commit 51c58e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion augur/application/db/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def insert_data(self, data: Union[List[dict], dict], table, natural_keys: List[s

except Exception as e:
#self.logger.info(e)
if(len(data) == 1):
if len(data) == 1:
raise e

time.sleep(3)
Expand Down

0 comments on commit 51c58e6

Please sign in to comment.