From cd8e552191700c5cbdef4e00d0eb3c2370981d80 Mon Sep 17 00:00:00 2001 From: Felipe M Date: Tue, 11 Aug 2020 13:52:04 +0200 Subject: [PATCH] Allow empty author when sending messages --- butterrobot/objects.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/butterrobot/objects.py b/butterrobot/objects.py index 926e6a7..55051c7 100644 --- a/butterrobot/objects.py +++ b/butterrobot/objects.py @@ -7,7 +7,7 @@ from typing import Text, Optional class Message: text: Text chat: Text - author: Text + author: Text = None from_bot: bool = False date: Optional[datetime] = None id: Optional[Text] = None