Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Charles Ferguson
streamedinput
Commits
5902b084
Commit
5902b084
authored
May 05, 2018
by
Charles Ferguson
Browse files
Update pylintrc to work with later versions of pylint
parent
570dd496
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
pylintrc
pylintrc
+1
-1
No files found.
pylintrc
View file @
5902b084
...
...
@@ -12,7 +12,7 @@
# So instead, we have this horrible hack where we insert a new
# function into the linter which will print out the modules
# being processed.
init-hook=exec("_x=PyLinter.set_current_module\ndef _new_set_module(self, module, file=None, oldfunc=_x):\n print('Checking
%s%s' %
(module, ' ('+file+')' if file else ''))\n return oldfunc(self, module, file)\n\nPyLinter.set_current_module = _new_set_module")
init-hook=exec("_x=PyLinter.set_current_module\ndef _new_set_module(self, module, file=None, oldfunc=_x):\n print('Checking
{}{}'.format
(module, ' ('+file+')' if file else ''))\n return oldfunc(self, module, file)\n\nPyLinter.set_current_module = _new_set_module")
# Profiled execution.
profile=no
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment