Merge pull request #17 from BeryJu/dependabot/pip/pylint-2.5.2

build(deps-dev): bump pylint from 2.4.4 to 2.5.2
This commit is contained in:
Jens L 2020-05-19 07:33:17 +02:00 committed by GitHub
commit 0fe555a76e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 11 deletions

View File

@ -1,9 +1,8 @@
[MASTER] [MASTER]
disable=redefined-outer-name,arguments-differ,no-self-use,cyclic-import,fixme,locally-disabled,unpacking-non-sequence,too-many-ancestors,too-many-branches,too-few-public-methods,import-outside-toplevel,bad-continuation disable=redefined-outer-name,arguments-differ,no-self-use,cyclic-import,fixme,locally-disabled,too-many-ancestors,too-few-public-methods,import-outside-toplevel,bad-continuation,signature-differs
load-plugins=pylint_django,pylint.extensions.bad_builtin load-plugins=pylint_django,pylint.extensions.bad_builtin
extension-pkg-whitelist=lxml extension-pkg-whitelist=lxml
const-rgx=[a-zA-Z0-9_]{1,40}$ const-rgx=[a-zA-Z0-9_]{1,40}$
ignored-modules=django-otp ignored-modules=django-otp
jobs=4 jobs=4

16
Pipfile.lock generated
View File

@ -844,10 +844,10 @@
}, },
"astroid": { "astroid": {
"hashes": [ "hashes": [
"sha256:71ea07f44df9568a75d0f354c49143a4575d90645e9fead6dfb52c26a85ed13a", "sha256:4c17cea3e592c21b6e222f673868961bad77e1f985cb1694ed077475a89229c1",
"sha256:840947ebfa8b58f318d42301cf8c0a20fd794a33b61cc4638e28e9e61ba32f42" "sha256:d8506842a3faf734b81599c8b98dcc423de863adcc1999248480b18bd31a0f38"
], ],
"version": "==2.3.3" "version": "==2.4.1"
}, },
"attrs": { "attrs": {
"hashes": [ "hashes": [
@ -1039,11 +1039,11 @@
}, },
"pylint": { "pylint": {
"hashes": [ "hashes": [
"sha256:3db5468ad013380e987410a8d6956226963aed94ecb5f9d3a28acca6d9ac36cd", "sha256:b95e31850f3af163c2283ed40432f053acbc8fc6eba6a069cb518d9dbf71848c",
"sha256:886e6afc935ea2590b462664b161ca9a5e40168ea99e5300935f6591ad467df4" "sha256:dd506acce0427e9e08fb87274bcaa953d38b50a58207170dbf5b36cf3e16957b"
], ],
"index": "pypi", "index": "pypi",
"version": "==2.4.4" "version": "==2.5.2"
}, },
"pylint-django": { "pylint-django": {
"hashes": [ "hashes": [
@ -1181,9 +1181,9 @@
}, },
"wrapt": { "wrapt": {
"hashes": [ "hashes": [
"sha256:565a021fd19419476b9362b05eeaa094178de64f8361e44468f9e9d7843901e1" "sha256:b62ffa81fb85f4332a4f609cab4ac40709470da05643a082ec1eb88e6d9b97d7"
], ],
"version": "==1.11.2" "version": "==1.12.1"
} }
} }
} }

View File

@ -195,7 +195,7 @@ class Processor:
try: try:
self._extract_saml_request() self._extract_saml_request()
except KeyError: except KeyError:
raise CannotHandleAssertion(f"Couldn't find SAML request in user session") raise CannotHandleAssertion("Couldn't find SAML request in user session")
try: try:
self._decode_and_parse_request() self._decode_and_parse_request()