Skip to content
Snippets Groups Projects
Commit fd1352ad authored by Rafael Guterres Jeffman's avatar Rafael Guterres Jeffman
Browse files

pylint: Disable warning when using non-literal dict

Recent pylint versions warns when a dictionaire is created using
'dict()' instead of '{...}'. Using 'dict()' in ansible-freeipa modules
actually enhances readability, so this change disables the check for
'use-dict-literal' in pylint.
parent de38e8f0
No related branches found
No related tags found
No related merge requests found
......@@ -55,7 +55,8 @@ disable =
broad-except,
too-many-branches,
too-many-locals,
fixme
fixme,
use-dict-literal
[pylint.BASIC]
good-names =
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment