Skip to content

Commit

Permalink
fix: missing commas
Browse files Browse the repository at this point in the history
  • Loading branch information
nampereira committed Jan 30, 2025
1 parent 5e97bee commit d6c2303
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions arena/scene.py
Original file line number Diff line number Diff line change
Expand Up @@ -534,8 +534,8 @@ def delete_program(self, obj):
"data": {
"uuid": obj.object_id,
"type": "module",
"name": obj.data.name
"parent": obj.data.parent
"name": obj.data.name,
"parent": obj.data.parent,
},
}
Object.remove(obj)
Expand Down Expand Up @@ -704,7 +704,7 @@ def get_persisted_objs(self):
# replace program object, if matches our program id
if object_type == Program.object_type:
if os.environ.get(PROGRAM_OBJECT_ID) == object_id:
print("PROGRAM_OBJECT_ID", PROGRAM_OBJECT_ID)
print("PROGRAM_OBJECT_ID", object_id)
persisted_obj.persist = True
self.program = Program(object_id=object_id, **data)
else:
Expand Down

0 comments on commit d6c2303

Please sign in to comment.