From c09e02a01e252e35b5bb78b2c3e0c9b2da8caf57 Mon Sep 17 00:00:00 2001 From: Alexander Zaft Date: Mon, 28 Oct 2024 14:16:55 +0100 Subject: [PATCH] Revert "config: allow using Prop(...)" This reverts commit ba59bd549860797f5bdf15cadfea539754d833cd. Reason for revert: unnecessary Change-Id: I4bf46a1de2e699049572f376e84fa39db5dae76c Reviewed-on: https://forge.frm2.tum.de/review/c/secop/frappy/+/34888 Reviewed-by: Alexander Zaft Tested-by: Jenkins Automated Tests --- frappy/config.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/frappy/config.py b/frappy/config.py index d8279b5..0ef7d83 100644 --- a/frappy/config.py +++ b/frappy/config.py @@ -132,8 +132,7 @@ def process_file(filename, log): config_text = filename.read_bytes() node = NodeCollector() mods = Collector(Mod) - ns = {'Node': node.add, 'Mod': mods.add, 'Param': Param, - 'Prop': Param, 'Command': Param, 'Group': Group} + ns = {'Node': node.add, 'Mod': mods.add, 'Param': Param, 'Command': Param, 'Group': Group} # pylint: disable=exec-used exec(compile(config_text, filename, 'exec'), ns)