mirror of
https://github.com/nonebot/nonebot2.git
synced 2025-09-06 12:06:45 +00:00
8 lines
132 B
Python
8 lines
132 B
Python
from nonebot.typing import T_State
|
|
|
|
type AliasedState = T_State
|
|
|
|
|
|
async def aliased_state(x: AliasedState) -> T_State:
|
|
return x
|