diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-04-04 20:35:31 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-04-04 20:35:33 -0700 |
commit | 152b120af6ba50ce880e7962a790053d6d724480 (patch) | |
tree | 82cfbd804b3a3430d3a714af8752f9704edaacbb /python | |
parent | 63158f6c81640db8fb37ce2299095a4a47db4c7f (diff) | |
download | fatcat-152b120af6ba50ce880e7962a790053d6d724480.tar.gz fatcat-152b120af6ba50ce880e7962a790053d6d724480.zip |
work around pylint/responses error
Known problem with reponses and dynamic functions. See also:
https://github.com/getsentry/responses/issues/74
Diffstat (limited to 'python')
-rw-r--r-- | python/.pylintrc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/python/.pylintrc b/python/.pylintrc index 2a7b9797..80e203d9 100644 --- a/python/.pylintrc +++ b/python/.pylintrc @@ -9,3 +9,6 @@ include-ids=yes [MISCELLANEOUS] # List of note tags to take in consideration, separated by a comma. notes=FIXME,XXX,DELETEME + +[TYPECHECK] +ignored-modules=responses |