From 05ad4651b57c6275b29433e5e76e166344ba6c4c Mon Sep 17 00:00:00 2001 From: Harry Lees Date: Tue, 31 Jan 2023 13:11:28 +0000 Subject: [PATCH] reverted changelog case change --- doc/build/changelog/migration_20.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/build/changelog/migration_20.rst b/doc/build/changelog/migration_20.rst index 604d59e083..51e34955ee 100644 --- a/doc/build/changelog/migration_20.rst +++ b/doc/build/changelog/migration_20.rst @@ -471,7 +471,7 @@ are subject to these errors, as would occur in the example below:: id: int = Column(Integer, primary_key=True) # will raise - bars: List["Bar"] = relationship("Bar", back_populates="foo") + bars: list["Bar"] = relationship("Bar", back_populates="foo") class Bar(Base): @@ -519,7 +519,7 @@ that descend from ``Base``:: id: int = Column(Integer, primary_key=True) - bars: List["Bar"] = relationship("Bar", back_populates="foo") + bars: list["Bar"] = relationship("Bar", back_populates="foo") class Bar(Base): -- 2.47.2