Commit 1c460d13 authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Make EnvelopeRecipient(arguments=) optional

parent dad16cb1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -570,7 +570,7 @@ class EnvelopeRecipient(Message, ident=b"R"):
		Self = TypeVar("Self", bound="EnvelopeRecipient")

	recipient: bytes
	arguments: list[bytes]
	arguments: list[bytes] = field(default_factory=list)

	@classmethod
	def from_buffer(cls: type[Self], buf: memoryview) -> Self: