Skip to content
Snippets Groups Projects
Commit b323376d authored by Jan Mach's avatar Jan Mach
Browse files

Fix: Fix for Pylint error on automated build system.

E:422,34: Module 'traceback' has no 'TracebackException' member (no-member)

(Redmine issue: #3443,#3387)
parent 4d1a4d69
No related branches found
No related tags found
No related merge requests found
...@@ -274,7 +274,7 @@ contextmanager-decorators=contextlib.contextmanager ...@@ -274,7 +274,7 @@ contextmanager-decorators=contextlib.contextmanager
# List of members which are set dynamically and missed by pylint inference # List of members which are set dynamically and missed by pylint inference
# system, and so shouldn't trigger E1101 when accessed. Python regular # system, and so shouldn't trigger E1101 when accessed. Python regular
# expressions are accepted. # expressions are accepted.
generated-members=query,commit,add,dirty,delete generated-members=query,commit,add,dirty,delete,TracebackException
# Tells whether missing members accessed in mixin class should be ignored. A # Tells whether missing members accessed in mixin class should be ignored. A
# mixin class is detected if its name ends with "mixin" (case insensitive). # mixin class is detected if its name ends with "mixin" (case insensitive).
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment