Remove pylint bad-whitepace references

This commit is contained in:
2Shirt 2021-03-25 21:25:40 -06:00
parent 9818d5196f
commit ba5efedb11
Signed by: 2Shirt
GPG key ID: 152FAC923B0E132C
7 changed files with 3 additions and 7 deletions

View file

@ -1,5 +1,5 @@
"""WizardKit: Config - ddrescue"""
# pylint: disable=bad-whitespace,line-too-long
# pylint: disable=line-too-long
# vim: sts=2 sw=2 ts=2
from collections import OrderedDict

View file

@ -1,5 +1,5 @@
"""WizardKit: Config - Hardware"""
# pylint: disable=bad-whitespace,line-too-long
# pylint: disable=line-too-long
# vim: sts=2 sw=2 ts=2
import re

View file

@ -2,7 +2,6 @@
NOTE: Non-standard formating is used for BASH/BATCH/PYTHON compatibility
"""
# pylint: disable=bad-whitespace
# vim: sts=2 sw=2 ts=2

View file

@ -1,5 +1,4 @@
"""WizardKit: Config - Net"""
# pylint: disable=bad-whitespace
# vim: sts=2 sw=2 ts=2

View file

@ -1,5 +1,4 @@
"""WizardKit: Config - UFD"""
# pylint: disable=bad-whitespace
# vim: sts=2 sw=2 ts=2
from collections import OrderedDict

View file

@ -1,5 +1,4 @@
"""WizardKit: Graph Functions"""
# pylint: disable=bad-whitespace
# vim: sts=2 sw=2 ts=2
import logging

View file

@ -880,7 +880,7 @@ def major_exception():
# print('Uploading... ', end='', flush=True)
# try:
# upload_debug_report(report, reason='CRASH')
# except Exception: #pylint: disable=broad-except
# except Exception: # pylint: disable=broad-except
# print_error('FAILED', log=False)
# LOG.error('Upload failed', exc_info=True)
# else: