From 3f094b7bab262f08f888ef8179fad466b1c677ec Mon Sep 17 00:00:00 2001 From: Brad Campbell Date: Thu, 1 Sep 2022 00:04:59 -0400 Subject: [PATCH] print attr moved to display --- tockloader/tockloader.py | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/tockloader/tockloader.py b/tockloader/tockloader.py index 1918456..e552356 100644 --- a/tockloader/tockloader.py +++ b/tockloader/tockloader.py @@ -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))