Skip to content

Commit

Permalink
Remove debug
Browse files Browse the repository at this point in the history
  • Loading branch information
nathandf committed Oct 10, 2024
1 parent 5ce58ef commit 7379e6e
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/engine/src/templating/TemplateMapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,6 @@ def map(
None
)

print(f"TYPE map_target_class: {map_target_class.__name__}")

# Raise exception if no class could be resolved from the template
if map_target_class == None:
raise Exception(f"Invalid Template: Unable to resolve object type from Template. Task template object 'type' property must be one of {list(self.task_map_by_type.keys())} | Recieved: {template.get('type', 'None')}")
Expand All @@ -63,8 +61,6 @@ def map(
# map target
tmp_obj = map_target.dict()

print(f"TYPE tmp_obj: {type(tmp_obj)}")

# Create a dictionary of the map target object and map the properties of
# the template onto the dictionary
for attr in template.keys():
Expand Down

0 comments on commit 7379e6e

Please sign in to comment.