Skip to content

Commit e927f3c

Browse files
committed
fixup! events: add __str__ showing push_id and repo_url
1 parent 8a5c0cf commit e927f3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

git_hg_sync/events.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class Push(BaseModel):
2121
push_json_url: str
2222

2323
def __str__(self) -> str:
24-
return f"{self.push_id} for {self.repo_url}"
24+
return f"Push {self.push_id} for {self.repo_url}"
2525

2626
@model_validator(mode="after")
2727
def check_branch_tags(self) -> Self:

0 commit comments

Comments
 (0)