From 520c7d5a75a7eea1b9969da2ca077071adf6a06a Mon Sep 17 00:00:00 2001 From: LarryWoestman Date: Thu, 23 Feb 2023 16:01:20 -0800 Subject: [PATCH] Path: Added a change based on feedback. --- src/Mod/Path/Path/Post/UtilsParse.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Mod/Path/Path/Post/UtilsParse.py b/src/Mod/Path/Path/Post/UtilsParse.py index 20cf7ac80d..d83dd7b065 100644 --- a/src/Mod/Path/Path/Post/UtilsParse.py +++ b/src/Mod/Path/Path/Post/UtilsParse.py @@ -291,8 +291,7 @@ def init_parameter_functions(parameter_functions): "Z": default_axis_parameter, # "$" is used by LinuxCNC (and others?) to designate which spindle } - for parameter in default_parameter_functions: - parameter_functions[parameter] = default_parameter_functions[parameter] + parameter_functions.update(default_parameter_functions) def linenumber(values, space=None):