Skip to content

Commit

Permalink
chore: fix overgeneral-exceptions & change CI triggers (#534)
Browse files Browse the repository at this point in the history
  • Loading branch information
hf-kklein authored Sep 21, 2023
1 parent f865698 commit 6ff11a3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: "Test Doc Creation (Sphinx)"
on: [push,pull_request]
on: [pull_request]
jobs:
docbuild:
name: Check Docs
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.10", "3.11"]
python-version: ["3.11"]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -537,5 +537,5 @@ preferred-modules=

# Exceptions that will emit a warning when being caught. Defaults to
# "BaseException, Exception".
overgeneral-exceptions=BaseException,
Exception
overgeneral-exceptions=builtins.BaseException,
builtins.Exception

0 comments on commit 6ff11a3

Please sign in to comment.