✏️ add missing annotationo

This commit is contained in:
yanyongyu
2021-12-07 02:16:18 +08:00
parent 47d4909b31
commit b64b02bb45
2 changed files with 2 additions and 37 deletions

View File

@ -14,7 +14,7 @@ from nonebot.drivers import (
class Adapter(abc.ABC):
def __init__(self, driver: Driver, **kwargs: Any):
self.driver = driver
self.driver: Driver = driver
self.bots: Dict[str, Bot] = {}
@classmethod