Skip to content

Commit

Permalink
print attr moved to display
Browse files Browse the repository at this point in the history
  • Loading branch information
bradjc committed Sep 1, 2022
1 parent 410ab7c commit 3f094b7
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions tockloader/tockloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -1403,17 +1403,3 @@ def _print_apps(self, apps, verbose, quiet):
else:
# In quiet mode just show the names.
print(" ".join([app.get_name() for app in apps]))

def _print_attributes(self, attributes):
"""
Print the list of attributes in the bootloader.
"""
for index, attribute in enumerate(attributes):
if attribute:
print(
"{:02d}: {:>8} = {}".format(
index, attribute["key"], attribute["value"]
)
)
else:
print("{:02d}:".format(index))

0 comments on commit 3f094b7

Please sign in to comment.