Enable pylint missing-final-newline check

Enables check and fixes:
ipaserver/install/otpdinstance.py:25: [C0304(missing-final-newline), ]
Final newline missing)

Reviewed-By: Jan Cholasta <jcholast@redhat.com>
This commit is contained in:
Martin Basti
2015-12-17 00:07:26 +01:00
committed by Jan Cholasta
parent 1f6b1c2de7
commit 81ff72b9af
2 changed files with 1 additions and 2 deletions

View File

@@ -296,7 +296,6 @@ def main():
linter.set_option('disable', 'invalid-name')
linter.set_option('disable', 'line-too-long')
linter.set_option('disable', 'missing-docstring')
linter.set_option('disable', 'missing-final-newline')
linter.set_option('disable', 'multiple-imports')
linter.set_option('disable', 'multiple-statements')
linter.set_option('disable', 'old-style-class')