Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/sqlalchemy/sqlalchemy
/ Parent
Class
Parent
test/typing/plain_files/orm/mapped_covariant.py:48–53 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
46
47
48
class
Parent(Base):
49
__tablename__ =
"parent"
50
51
name: Mapped[str] = mapped_column(primary_key=True)
52
53
children: Mapped[Sequence[
"Child"
]] = relationship(
"Child"
)
54
55
56
class
Child(Base):
Callers
1
mapped_covariant.py
File · 0.70
Calls
2
mapped_column
Function · 0.90
relationship
Function · 0.90
Tested by
no test coverage detected