Skip to content

Commit 1ee13a0

Browse files
authored
Merge branch 'main' into dependabot/pip/mkdocs-material-9.6.22
2 parents ae244b8 + 2d5617f commit 1ee13a0

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

docs/release-notes.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## Latest Changes
44

5+
### Internal
6+
7+
* ✅ Remove unused type ignores since SQLAlchemy 2.0.44. PR [#1613](https://github.com/fastapi/sqlmodel/pull/1613) by [@svlandeg](https://github.com/svlandeg).
8+
59
## 0.0.27
610

711
### Upgrades

sqlmodel/ext/asyncio/session.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ async def exec(
129129
```
130130
"""
131131
)
132-
async def execute( # type: ignore
132+
async def execute(
133133
self,
134134
statement: _Executable,
135135
params: Optional[_CoreAnyExecuteParams] = None,

sqlmodel/orm/session.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ def exec(
113113
""",
114114
category=None,
115115
)
116-
def execute( # type: ignore
116+
def execute(
117117
self,
118118
statement: _Executable,
119119
params: Optional[_CoreAnyExecuteParams] = None,

0 commit comments

Comments
 (0)