Skip to content
Snippets Groups Projects

model: Make message field optional in Release model

Compare and
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -371,7 +371,7 @@ class Release(BaseModel, HashableObject):
type=bytes,
validator=type_validator())
message = attr.ib(
type=bytes,
type=Optional[bytes],
validator=type_validator())
target = attr.ib(
type=Optional[Sha1Git],
Loading