Remove extra equals sign

这个提交包含在:
Craig Warren
2022-11-09 09:46:33 +00:00
父节点 d1c0757cbc
当前提交 428424ece6

查看文件

@@ -346,7 +346,7 @@ def parse_hash_commands(scene):
if config.sim_config.args.write_processed:
write_processed_file(processedlines)
user_objs = get_user_objects(processedlines, checkessential==True)
user_objs = get_user_objects(processedlines, checkessential=True)
for user_obj in user_objs:
scene.add(user_obj)
@@ -369,7 +369,7 @@ class Capturing(list):
def user_libs_fn_to_scene_obj(f, *args, **kwargs):
"""Function to convert library functions in the user_libs directory
"""Function to convert library functions in the toolboxes directory
into geometry objects which can be added to the scene.
"""