From: Michael Fritch Date: Tue, 2 Mar 2021 20:50:10 +0000 (-0700) Subject: cephadm: continuation line with same indent as next logical line (E125) X-Git-Tag: v17.1.0~2749^2~33 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=0d57f5496e0b4b486e4c723d150f789b58c960e7;p=ceph.git cephadm: continuation line with same indent as next logical line (E125) Signed-off-by: Michael Fritch --- diff --git a/src/cephadm/cephadm b/src/cephadm/cephadm index 9b95f8369529..1b304ee90452 100755 --- a/src/cephadm/cephadm +++ b/src/cephadm/cephadm @@ -309,7 +309,7 @@ class Monitoring(object): ctx.container_path, 'exec', container_id, cmd, '--version' ]) if code == 0 and \ - err.startswith('%s, version ' % cmd): + err.startswith('%s, version ' % cmd): version = err.split(' ')[2] return version diff --git a/src/cephadm/tox.ini b/src/cephadm/tox.ini index c6eb55981ba9..a46070969675 100644 --- a/src/cephadm/tox.ini +++ b/src/cephadm/tox.ini @@ -5,7 +5,6 @@ skipsdist=true [flake8] max-line-length = 100 ignore = - E125, E126, E127, E128,