Skip to content

Commit

Permalink
fix flake8 errors
Browse files Browse the repository at this point in the history
  • Loading branch information
jreadey committed Mar 26, 2024
1 parent c60e76e commit fb5b680
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion h5pyd/_apps/hsls.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,7 @@ def dumpAcls(obj):
for acl in acls:
dumpACL(acl)


def dumpAttrs(obj):
""" print attributes of the given obj """

Expand All @@ -294,6 +295,7 @@ def dumpAttrs(obj):
else:
print(" attr: {0:24} {1}".format(attr_name, attr))


def getFolder(domain):
username = cfg["hs_username"]
password = cfg["hs_password"]
Expand Down Expand Up @@ -655,7 +657,7 @@ def main():
continue
dump(h5path, obj)
continue

if cfg["showattrs"]:
# dump attributes for root group
dumpAttrs(grp)
Expand Down

0 comments on commit fb5b680

Please sign in to comment.