From: Harry Lees Date: Tue, 31 Jan 2023 13:11:28 +0000 (+0000) Subject: reverted changelog case change X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F9198%2Fhead;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git reverted changelog case change --- 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):