Skip to content

Commit

Permalink
fix: Bug for cached repositories
Browse files Browse the repository at this point in the history
  • Loading branch information
katomaso committed Nov 28, 2024
1 parent 79f447e commit 9dd4778
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gira/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class Upgrade:
name: str
old_version: Optional[str] = None
new_version: Optional[str] = None
messages: list[str] = field(default_factory=list)
messages: Optional[list[str]] = None

def __str__(self):
return f"{self.name} {self.old_version} => {self.new_version}:"

0 comments on commit 9dd4778

Please sign in to comment.