This commit is contained in:
Joscha 2019-04-12 20:40:47 +00:00
parent 5586020d1e
commit 6741d36009
2 changed files with 2 additions and 1 deletions

View file

@ -65,6 +65,7 @@ i. e. the text between the end of the "!echo" and the end of the whole message.
- [ ] document new classes (docstrings, maybe comments)
- [ ] write project readme
- [ ] write examples
- [ ] make yaboli package play nice with mypy
- [x] implement !uptime for proper botrulez conformity
- [x] implement !kill
- [x] untruncate LiveMessage-s

View file

@ -51,7 +51,7 @@ def run(
client: Callable[[str], Client],
config_file: str = "bot.conf"
) -> None:
async def _run():
async def _run() -> None:
client_ = client(config_file)
await client_.run()