From 2ecd74cdac098b3b4cdd209c10ce00f050aa8a8a Mon Sep 17 00:00:00 2001 From: Adam King Date: Fri, 9 Dec 2022 11:25:01 -0500 Subject: [PATCH] pybind/mgr: fix tox autopep8 args Similar to mypy, we now need a backslash to signal a newline doesn't mean to start a new command Signed-off-by: Adam King --- src/pybind/mgr/tox.ini | 44 +++++++++++++++++++++--------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/src/pybind/mgr/tox.ini b/src/pybind/mgr/tox.ini index af7c9b5eebb..bbacc675fda 100644 --- a/src/pybind/mgr/tox.ini +++ b/src/pybind/mgr/tox.ini @@ -28,20 +28,20 @@ ignore = E501, W503, exclude = - .tox, - .vagrant, - __pycache__, - *.pyc, - templates, + .tox \ + .vagrant \ + __pycache__ \ + *.pyc \ + templates \ .eggs statistics = True [autopep8] addopts = - --max-line-length {[flake8]max-line-length} - --exclude "{[flake8]exclude}" - --in-place - --recursive + --max-line-length {[flake8]max-line-length} \ + --exclude "{[flake8]exclude}" \ + --in-place \ + --recursive \ --ignore-local-config [testenv] @@ -157,19 +157,19 @@ basepython = python3 deps = autopep8 modules = - alerts - balancer - cephadm - cli_api - crash - devicehealth - diskprediction_local - insights - iostat - nfs - orchestrator - prometheus - status + alerts \ + balancer \ + cephadm \ + cli_api \ + crash \ + devicehealth \ + diskprediction_local \ + insights \ + iostat \ + nfs \ + orchestrator \ + prometheus \ + status \ telemetry commands = python --version -- 2.39.5