diff options
author | Christian Cleberg <156287552+ccleberg@users.noreply.github.com> | 2024-10-28 19:57:49 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-28 19:57:49 +0000 |
commit | fc0018b36dddf189327c9c293685a88a3d03d3f4 (patch) | |
tree | 7babe40c08e24bcf80545d4bbad86116ef1543b4 | |
parent | c8db45d0004145c4668ba7b933216d928d4d1732 (diff) | |
download | audit-tools-fc0018b36dddf189327c9c293685a88a3d03d3f4.tar.gz audit-tools-fc0018b36dddf189327c9c293685a88a3d03d3f4.tar.bz2 audit-tools-fc0018b36dddf189327c9c293685a88a3d03d3f4.zip |
exclude R0801 from pylint
-rw-r--r-- | .github/workflows/pylint.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index c1aeff6..d210abb 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -20,4 +20,4 @@ jobs: pip install pylint pandas dash plotly.express - name: Analysing the code with pylint run: | - pylint $(git ls-files '*.py') + pylint -d R0801 $(git ls-files '*.py') |