From: Sam Bull Date: Sat, 19 Nov 2022 21:39:49 +0000 (+0000) Subject: Update sessionmakers.py X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3b9ccc6762dafbe85cff53d042ad7f04cf37fb7c;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Update sessionmakers.py --- diff --git a/test/ext/mypy/plain_files/sessionmakers.py b/test/ext/mypy/plain_files/sessionmakers.py index 46e3e0fed8..2d02f2a3f4 100644 --- a/test/ext/mypy/plain_files/sessionmakers.py +++ b/test/ext/mypy/plain_files/sessionmakers.py @@ -99,8 +99,9 @@ def test_8837_sync() -> None: # EXPECTED_TYPE: Session reveal_type(session) + def test_8837_async() -> None: - as_= async_sessionmaker() + as_ = async_sessionmaker() # EXPECTED_TYPE: async_sessionmaker[AsyncSession] reveal_type(as_)