Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
peixubin committed Jul 1, 2024
1 parent b2e192b commit 15da01e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sql/utils/workflow_audit.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ def generate_audit_setting(self) -> AuditSetting:
reject = False
if self.max_errlevel == 1 and auto_review_wrong == 1:
reject = True
elif self.max_errlevel == 2 and auto_review_wrong in (1,2):
elif self.max_errlevel == 2 and auto_review_wrong in (1, 2):
reject = True
if auto_review and not reject:
return AuditSetting(auto_pass=True)
Expand Down

0 comments on commit 15da01e

Please sign in to comment.