summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2022-07-28 12:45:12 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2022-07-28 12:45:34 +0200
commit67e7eca0a60012de7394cd281aaf80f55a196036 (patch)
tree6c67685fcde936f836c52ba67c8251e0bc222413
parentitems: Improve test case (diff)
downloadrtems-central-67e7eca0a60012de7394cd281aaf80f55a196036.tar.bz2
items: Remove debug output
-rw-r--r--rtemsspec/items.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/rtemsspec/items.py b/rtemsspec/items.py
index b8846d5a..7ef5c2a8 100644
--- a/rtemsspec/items.py
+++ b/rtemsspec/items.py
@@ -763,7 +763,6 @@ class ItemCache:
def save_data(self, path: str, data: Any) -> None:
""" Saves the item data to the file specified by path. """
- print('save-data', path, data)
with open(path, "w") as file:
data2 = {}
for key, value in data.items():