File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ class ViewComponentIframe:
55
55
56
56
@dataclass
57
57
class QueryOptions :
58
- """A Django ORM query function, alongside some configuration values ."""
58
+ """Configuration options that can be provided to `use_query` ."""
59
59
60
60
postprocessor_options : dict [str , Any ] = field (
61
61
default_factory = lambda : {"many_to_many" : False , "many_to_one" : False }
Original file line number Diff line number Diff line change 7
7
from fnmatch import fnmatch
8
8
from importlib import import_module
9
9
from inspect import iscoroutinefunction
10
- from typing import Any , Callable , Sequence , overload
10
+ from typing import Any , Callable , Sequence
11
11
12
12
from channels .db import database_sync_to_async
13
13
from django .http import HttpRequest , HttpResponse
16
16
from django .views import View
17
17
18
18
from django_idom .config import IDOM_REGISTERED_COMPONENTS
19
- from django_idom .types import QueryOptions , _Params , _Result
20
19
21
20
22
21
_logger = logging .getLogger (__name__ )
You can’t perform that action at this time.
0 commit comments