Coverage for src/prisma/_typing.py: 75%
6 statements
« prev ^ index » next coverage.py v7.2.7, created at 2024-08-27 18:25 +0000
« prev ^ index » next coverage.py v7.2.7, created at 2024-08-27 18:25 +0000
1from __future__ import annotations
3from ._compat import get_origin
6def is_list_type(typ: type | None) -> bool:
7 if typ is None: 7 ↛ 8line 7 didn't jump to line 8, because the condition on line 7 was never true
8 return False
10 return (get_origin(typ) or typ) == list