From 6741d360092bc4b29d0f6c349c0e5ba251305bf9 Mon Sep 17 00:00:00 2001 From: Joscha Date: Fri, 12 Apr 2019 20:40:47 +0000 Subject: [PATCH] Clean up --- README.md | 1 + yaboli/__init__.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 27b0d91..9d3c26e 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/yaboli/__init__.py b/yaboli/__init__.py index 553b8d7..ac1c244 100644 --- a/yaboli/__init__.py +++ b/yaboli/__init__.py @@ -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()