Coverage for src/typedal/types.py: 100%
6 statements
« prev ^ index » next coverage.py v7.3.2, created at 2023-10-26 10:35 +0200
« prev ^ index » next coverage.py v7.3.2, created at 2023-10-26 10:35 +0200
1"""
2Stuff to make mypy happy.
3"""
5from pydal.objects import Expression as _Expression
6from pydal.objects import Query as _Query
9class Query(_Query): # type: ignore
10 """
11 Pydal Query object.
13 Makes mypy happy.
14 """
17class Expression(_Expression): # type: ignore
18 """
19 Pydal Expression object.
21 Make mypy happy.
22 """
25class _Types:
26 """
27 Internal type storage for stuff that mypy otherwise won't understand.
28 """
30 NONETYPE = type(None)