Skip to content

Commit

Permalink
Better repr for ComponentRequest.
Browse files Browse the repository at this point in the history
  • Loading branch information
adamghill committed Dec 23, 2023
1 parent ed6479e commit ea24979
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django_unicorn/views/objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def __init__(self, request, component_name):
def __repr__(self):
return (
f"ComponentRequest(name='{self.name}' id='{self.id}' key='{self.key}'"
f" epoch={self.epoch} data={self.data} action_queue={self.action_queue})"
f" epoch={self.epoch} data={self.data} action_queue={self.action_queue} hash={self.hash})"
)

def validate_checksum(self):
Expand Down

0 comments on commit ea24979

Please sign in to comment.