Skip to content

Commit

Permalink
Let linter ignore another broad exception catch
Browse files Browse the repository at this point in the history
  • Loading branch information
RincewindsHat committed Jun 10, 2024
1 parent a92d3b2 commit 60fddfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion check_brevisone
Original file line number Diff line number Diff line change
Expand Up @@ -336,6 +336,6 @@ if __name__ == '__main__': # pragma: no cover

if exception is not None:
raise exception.with_traceback(sys.exc_info()[2]) # pylint: disable=raise-missing-from
except Exception as excpt:
except Exception as excpt: # pylint: disable=broad-except
print("UNKNOWN - Error: %s" % (excpt))
sys.exit(3)

0 comments on commit 60fddfa

Please sign in to comment.