There was an error while loading. Please reload this page.
1 parent a6469ef commit 5a9fed2Copy full SHA for 5a9fed2
1 file changed
sqlmodel/orm/session.py
@@ -97,7 +97,7 @@ def exec(
97
heroes = session.execute(select(Hero)).scalars().all()
98
```
99
100
- instead you could use `exec()`:
+ Instead you could use `exec()`:
101
102
```Python
103
heroes = session.exec(select(Hero)).all()
@@ -127,7 +127,7 @@ def execute(
127
128
129
130
131
132
133
0 commit comments