Files
nonebot2/tests/plugins/param/param_exception.py
2026-02-18 00:11:36 +08:00

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