1
+ from __future__ import annotations
2
+
1
3
import asyncio
2
- import sys
3
4
from collections import OrderedDict
4
5
from dataclasses import dataclass
5
6
from enum import Enum
10
11
Generic ,
11
12
List ,
12
13
Optional ,
14
+ Tuple ,
13
15
Type ,
14
16
TypeVar ,
15
17
Union ,
16
18
)
17
-
18
- if sys .version_info >= (3 , 8 ):
19
- from typing import get_args
20
- else :
21
- from typing_extensions import get_args
22
-
23
19
from typing import OrderedDict as OrderedDictType
24
- from typing import Tuple
25
20
26
21
from bson import DBRef , ObjectId
27
22
from bson .errors import InvalidId
28
23
from pydantic import BaseModel
29
24
from pymongo import ASCENDING , IndexModel
25
+ from typing_extensions import get_args
30
26
31
27
from beanie .odm .enums import SortDirection
32
28
from beanie .odm .operators .find .comparison import (
@@ -307,19 +303,19 @@ def __init__(self, ref: DBRef, document_class: Type[T]):
307
303
self .ref = ref
308
304
self .document_class = document_class
309
305
310
- async def fetch (self , fetch_links : bool = False ) -> Union [T , " Link" ]:
306
+ async def fetch (self , fetch_links : bool = False ) -> Union [T , Link ]:
311
307
result = await self .document_class .get ( # type: ignore
312
308
self .ref .id , with_children = True , fetch_links = fetch_links
313
309
)
314
310
return result or self
315
311
316
312
@classmethod
317
- async def fetch_one (cls , link : " Link" ):
313
+ async def fetch_one (cls , link : Link ):
318
314
return await link .fetch ()
319
315
320
316
@classmethod
321
317
async def fetch_list (
322
- cls , links : List [Union [" Link" , " DocType" ]], fetch_links : bool = False
318
+ cls , links : List [Union [Link , DocType ]], fetch_links : bool = False
323
319
):
324
320
"""
325
321
Fetch list that contains links and documents
@@ -355,7 +351,7 @@ async def fetch_list(
355
351
356
352
@staticmethod
357
353
def repack_links (
358
- links : List [Union [" Link" , " DocType" ]],
354
+ links : List [Union [Link , DocType ]],
359
355
) -> OrderedDictType [Any , Any ]:
360
356
result = OrderedDict ()
361
357
for link in links :
@@ -366,7 +362,7 @@ def repack_links(
366
362
return result
367
363
368
364
@classmethod
369
- async def fetch_many (cls , links : List [" Link" ]):
365
+ async def fetch_many (cls , links : List [Link ]):
370
366
coros = []
371
367
for link in links :
372
368
coros .append (link .fetch ())
@@ -375,7 +371,7 @@ async def fetch_many(cls, links: List["Link"]):
375
371
if IS_PYDANTIC_V2 :
376
372
377
373
@staticmethod
378
- def serialize (value : Union [" Link" , BaseModel ]):
374
+ def serialize (value : Union [Link , BaseModel ]):
379
375
if isinstance (value , Link ):
380
376
return value .to_dict ()
381
377
return value .model_dump (mode = "json" )
@@ -540,7 +536,7 @@ def __repr__(self):
540
536
541
537
@staticmethod
542
538
def list_difference (
543
- left : List [" IndexModelField" ], right : List [" IndexModelField" ]
539
+ left : List [IndexModelField ], right : List [IndexModelField ]
544
540
):
545
541
result = []
546
542
for index in left :
@@ -549,7 +545,7 @@ def list_difference(
549
545
return result
550
546
551
547
@staticmethod
552
- def list_to_index_model (left : List [" IndexModelField" ]):
548
+ def list_to_index_model (left : List [IndexModelField ]):
553
549
return [index .index for index in left ]
554
550
555
551
@classmethod
@@ -567,12 +563,12 @@ def from_motor_index_information(cls, index_info: dict):
567
563
result .append (index_model )
568
564
return result
569
565
570
- def same_fields (self , other : " IndexModelField" ):
566
+ def same_fields (self , other : IndexModelField ):
571
567
return self .fields == other .fields
572
568
573
569
@staticmethod
574
570
def find_index_with_the_same_fields (
575
- indexes : List [" IndexModelField" ], index : " IndexModelField"
571
+ indexes : List [IndexModelField ], index : IndexModelField
576
572
):
577
573
for i in indexes :
578
574
if i .same_fields (index ):
@@ -581,7 +577,7 @@ def find_index_with_the_same_fields(
581
577
582
578
@staticmethod
583
579
def merge_indexes (
584
- left : List [" IndexModelField" ], right : List [" IndexModelField" ]
580
+ left : List [IndexModelField ], right : List [IndexModelField ]
585
581
):
586
582
left_dict = {index .fields : index for index in left }
587
583
right_dict = {index .fields : index for index in right }
0 commit comments