cephadm: over-indented (E117)

Signed-off-by: Michael Fritch <mfritch@suse.com>
This commit is contained in:
Michael Fritch 2021-02-12 09:02:17 -07:00
parent 78916a499c
commit 8187eb97c7
No known key found for this signature in database
GPG Key ID: 75F3EB2E80A03B7F
2 changed files with 2 additions and 3 deletions

View File

@ -1241,7 +1241,7 @@ if sys.version_info < (3, 8):
self._threads = {}
def is_active(self):
return True
return True
def close(self):
self._join_threads()
@ -3196,7 +3196,7 @@ def _pull_image(ctx, image):
cmd = [ctx.container_path, 'pull', image]
if 'podman' in ctx.container_path and os.path.exists('/etc/ceph/podman-auth.json'):
cmd.append('--authfile=/etc/ceph/podman-auth.json')
cmd.append('--authfile=/etc/ceph/podman-auth.json')
cmd_str = ' '.join(cmd)
for sleep_secs in [1, 4, 25]:

View File

@ -5,7 +5,6 @@ skipsdist=true
[flake8]
max-line-length = 100
ignore =
E117,
E121,
E122,
E123,