We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b511af0 commit 7aebcc9Copy full SHA for 7aebcc9
1 file changed
sqlmodel/main.py
@@ -3,7 +3,6 @@
3
import builtins
4
import ipaddress
5
import uuid
6
-import weakref
7
from collections.abc import Callable, Mapping, Sequence, Set
8
from dataclasses import dataclass
9
from datetime import date, datetime, time, timedelta
@@ -797,8 +796,6 @@ def get_column_from_field(field: Any) -> Column:
797
796
return Column(sa_type, *args, **kwargs)
798
799
800
-class_registry = weakref.WeakValueDictionary()
801
-
802
default_registry = registry()
803
804
_TSQLModel = TypeVar("_TSQLModel", bound="SQLModel")
0 commit comments