Coverage for src/prisma/engine/abstract.py: 100%
13 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
1# -*- coding: utf-8 -*-
2# code generated by Prisma. DO NOT EDIT.
3# pyright: reportUnusedImport=false
4# fmt: off
5from __future__ import annotations
7# global imports for type checking
8from builtins import bool as _bool
9from builtins import int as _int
10from builtins import float as _float
11from builtins import str as _str
12import sys
13import decimal
14import datetime
15from typing import (
16 TYPE_CHECKING,
17 Optional,
18 Iterable,
19 Iterator,
20 Sequence,
21 Callable,
22 ClassVar,
23 NoReturn,
24 TypeVar,
25 Generic,
26 Mapping,
27 Tuple,
28 Union,
29 List,
30 Dict,
31 Type,
32 Any,
33 Set,
34 overload,
35 cast,
36)
37from typing_extensions import TypedDict, Literal
40LiteralString = str
41# -- template engine/abstract.py.jinja --
44from ._abstract import AsyncAbstractEngine as AbstractEngine
47__all__ = ('AbstractEngine',)