mirror of
https://github.com/nonebot/nonebot2.git
synced 2026-02-26 12:44:35 +00:00
8 lines
169 B
Python
8 lines
169 B
Python
async def exc(e: Exception, x: ValueError | TypeError) -> Exception:
|
|
assert e == x
|
|
return e
|
|
|
|
|
|
async def legacy_exc(exception) -> Exception:
|
|
return exception
|