Ignore more pylint errors

This commit is contained in:
Brian C. Lane 2018-05-03 14:10:05 -07:00
parent 0f59710b36
commit bb214b21ab
1 changed files with 2 additions and 0 deletions

View File

@ -12,6 +12,8 @@ class LoraxLintConfig(PocketLintConfig):
# threading.Lock() is a factory function which returns an
# instance of the Lock class that is supported by the platform
FalsePositive(r"Context manager 'lock' doesn't implement __enter__ and __exit__"),
FalsePositive(r"Catching too general exception Exception"),
FalsePositive(r"^E0712.*: Catching an exception which doesn't inherit from (Base|)Exception: GError$"),
]
@property