mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-06-20 07:16:11 +01:00
pep8: Ignore line break before binary operator
PEP8 has switched its guidance [1] for where a line break should occur in relation to a binary operator, so don't raise this warning for new code and update the code base to follow the new style. [1] https://www.python.org/dev/peps/pep-0008/#should-a-line-break-before-or-after-a-binary-operator
This commit is contained in:
dev_scripts
wa
commands
framework
instruments
output_processors
utils
workloads
@ -79,7 +79,7 @@ def init(verbosity=logging.INFO, color=True, indent_with=4,
|
||||
root_logger.addHandler(_console_handler)
|
||||
|
||||
buffer_capacity = int(os.getenv('WA_LOG_BUFFER_CAPACITY',
|
||||
str(DEFAULT_INIT_BUFFER_CAPACITY)))
|
||||
str(DEFAULT_INIT_BUFFER_CAPACITY)))
|
||||
_init_handler = InitHandler(buffer_capacity)
|
||||
_init_handler.setLevel(logging.DEBUG)
|
||||
root_logger.addHandler(_init_handler)
|
||||
|
Reference in New Issue
Block a user