Skip to content

Commit

Permalink
🔇 remove unused type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
yanyongyu committed Feb 7, 2021
1 parent d26d7bb commit 2b67b0f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nonebot/message.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

import asyncio
from datetime import datetime
from typing import Set, Type, Optional, Iterable, TYPE_CHECKING
from typing import Set, Type, TYPE_CHECKING

from nonebot.log import logger
from nonebot.rule import TrieRule
Expand Down
2 changes: 1 addition & 1 deletion nonebot/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from dataclasses import dataclass
from importlib._bootstrap import _load
from contextvars import Context, ContextVar, copy_context
from typing import Any, Set, List, Dict, Type, Tuple, Union, Optional, Iterable, TYPE_CHECKING
from typing import Any, Set, List, Dict, Type, Tuple, Union, Optional, TYPE_CHECKING

from nonebot.log import logger
from nonebot.matcher import Matcher
Expand Down

0 comments on commit 2b67b0f

Please sign in to comment.