From: Adam King Date: Fri, 9 Dec 2022 16:25:01 +0000 (-0500) Subject: pybind/mgr: fix tox autopep8 args X-Git-Tag: v16.2.11~54^2~3 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=ad0c795f62fef0ed1c138645cff47a223846945d;p=ceph.git 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 (cherry picked from commit 2ecd74cdac098b3b4cdd209c10ce00f050aa8a8a) Conflicts: src/pybind/mgr/tox.ini --- diff --git a/src/pybind/mgr/tox.ini b/src/pybind/mgr/tox.ini index e0ed7d185d51..d70927b0d6e4 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]