mirror of
https://github.com/soxoj/maigret.git
synced 2026-05-06 14:08:59 +00:00
5ee91f6659
- updated sites list - test scripts linting
12 lines
211 B
Python
12 lines
211 B
Python
from typing import Callable, List, Dict, Tuple, Any
|
|
|
|
|
|
# search query
|
|
QueryDraft = Tuple[Callable, List, Dict]
|
|
|
|
# options dict
|
|
QueryOptions = Dict[str, Any]
|
|
|
|
# TODO: throw out
|
|
QueryResultWrapper = Dict[str, Any]
|