mirror of
https://github.com/nonebot/nonebot2.git
synced 2025-09-01 01:26:46 +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
|