cephadm: block comment should start with '# ' (E265)

Signed-off-by: Michael Fritch <mfritch@suse.com>
This commit is contained in:
Michael Fritch 2021-02-17 08:23:44 -07:00
parent 6d937393f8
commit 20c5f3d186
No known key found for this signature in database
GPG Key ID: 75F3EB2E80A03B7F
2 changed files with 4 additions and 5 deletions

View File

@ -4427,9 +4427,10 @@ def list_networks(ctx):
## sadly, 18.04's iproute2 4.15.0-2ubun doesn't support the -j flag,
## so we'll need to use a regex to parse 'ip' command output.
#out, _, _ = call_throws(['ip', '-j', 'route', 'ls'])
#j = json.loads(out)
#for x in j:
##
# out, _, _ = call_throws(['ip', '-j', 'route', 'ls'])
# j = json.loads(out)
# for x in j:
res = _list_ipv4_networks(ctx)
res.update(_list_ipv6_networks(ctx))

View File

@ -5,8 +5,6 @@ skipsdist=true
[flake8]
max-line-length = 100
ignore =
E261,
E265,
E266,
E301,
E302,