1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 03:24:20 +00:00

🔧 Give a default value to the files kwarg

This commit is contained in:
Steffo 2021-01-08 18:02:42 +01:00
parent 00b3829097
commit cdc5d43330

View file

@ -22,7 +22,6 @@ import royalnet.royaltyping as t
import abc import abc
import datetime import datetime
import sqlalchemy.orm import sqlalchemy.orm
import io
from . import exc from . import exc
@ -86,7 +85,7 @@ class Message(Bullet, metaclass=abc.ABCMeta):
async def send_reply(self, *, async def send_reply(self, *,
text: str = None, text: str = None,
files: t.List[t.BinaryIO]) -> t.Optional[Message]: files: t.List[t.BinaryIO] = None) -> t.Optional[Message]:
""" """
Reply to this message in the same channel it was sent in. Reply to this message in the same channel it was sent in.
@ -124,7 +123,7 @@ class Channel(Bullet, metaclass=abc.ABCMeta):
async def send_message(self, *, async def send_message(self, *,
text: str = None, text: str = None,
files: t.List[t.BinaryIO]) -> t.Optional[Message]: files: t.List[t.BinaryIO] = None) -> t.Optional[Message]:
""" """
Send a message in the channel. Send a message in the channel.
@ -157,7 +156,7 @@ class User(Bullet, metaclass=abc.ABCMeta):
async def send_message(self, *, async def send_message(self, *,
text: str = None, text: str = None,
files: t.List[t.BinaryIO]) -> t.Optional[Message]: files: t.List[t.BinaryIO] = None) -> t.Optional[Message]:
""" """
Send a private message to the user. Send a private message to the user.