Skip to content

Commit

Permalink
MessageToUnit fix for dict()
Browse files Browse the repository at this point in the history
  • Loading branch information
332fg-raven committed Feb 13, 2024
1 parent 3b98625 commit 97e0fc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dcs/action.py
Original file line number Diff line number Diff line change
Expand Up @@ -945,7 +945,7 @@ def create_from_dict(cls, d: Dict[Any, Any], mission) -> MessageToUnit:
d["seconds"], d["clearview"], d["start_delay"])

def dict(self):
d = super(MessageToGroup, self).dict()
d = super().dict()
d["unit"] = self.unit_id
d["seconds"] = self.seconds
d["clearview"] = self.clearview
Expand Down

0 comments on commit 97e0fc5

Please sign in to comment.