Skip to content

Commit

Permalink
CodeQL: Suppress warnings about py/mixed-returns
Browse files Browse the repository at this point in the history
  • Loading branch information
amotl committed Nov 24, 2022
1 parent c022e79 commit 1fedbb7
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,10 @@ query-filters:
# https://codeql.github.com/codeql-query-help/python/py-empty-except/
- exclude:
id: py/empty-except

# Quite a few functions don't explicitly return values, but
# instead implicitly return `None`, when falling through.
# TODO: May be improved.
# https://codeql.github.com/codeql-query-help/python/py-mixed-returns/
- exclude:
id: py/mixed-returns

0 comments on commit 1fedbb7

Please sign in to comment.