From: Aashish Sharma Date: Mon, 19 Dec 2022 12:21:33 +0000 (+0530) Subject: pybind/mgr: fix tox autopep8 args flake8 X-Git-Tag: v17.2.6~268^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=320a8708730ea2001b66aec1f5cee0eca38cd079;p=ceph.git pybind/mgr: fix tox autopep8 args flake8 Similar to mypy, we now need a backslash to signal a newline doesn't mean to start a new command Follow up of: https://github.com/ceph/ceph/pull/49361 Signed-off-by: Aashish Sharma --- diff --git a/src/pybind/mgr/tox.ini b/src/pybind/mgr/tox.ini index f692d8f451e9..d6ae7a29b3d6 100644 --- a/src/pybind/mgr/tox.ini +++ b/src/pybind/mgr/tox.ini @@ -158,19 +158,19 @@ deps = flake8 allowlist_externals = bash modules = - alerts - balancer - cephadm - cli_api - crash - devicehealth - diskprediction_local - hello - iostat - localpool - nfs - orchestrator - prometheus + alerts \ + balancer \ + cephadm \ + cli_api \ + crash \ + devicehealth \ + diskprediction_local \ + hello \ + iostat \ + localpool \ + nfs \ + orchestrator \ + prometheus \ selftest commands = flake8 --config=tox.ini {posargs} \