diff options
| author | Robert Kulagowski <rkulagow@schedulesdirect.org> | 2022-05-18 15:25:18 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-18 22:25:18 +0200 |
| commit | b66d57451ad28572c000490c10e451cbf600a9d1 (patch) | |
| tree | 1779848e515dd03f6786922801128f740d8e69ca /doc/build/tutorial | |
| parent | 9e7bed9df601ead02fd96bf2fc787b23b536d2d6 (diff) | |
| download | sqlalchemy-b66d57451ad28572c000490c10e451cbf600a9d1.tar.gz | |
Update dbapi_transactions.rst (#8032)
If you're defining 'y=row.y' then you might as well use 'y' in the print statement.
Diffstat (limited to 'doc/build/tutorial')
| -rw-r--r-- | doc/build/tutorial/dbapi_transactions.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/build/tutorial/dbapi_transactions.rst b/doc/build/tutorial/dbapi_transactions.rst index da07de87c..e5a499786 100644 --- a/doc/build/tutorial/dbapi_transactions.rst +++ b/doc/build/tutorial/dbapi_transactions.rst @@ -270,7 +270,7 @@ Below we illustrate a variety of ways to access rows. y = row.y # illustrate use with Python f-strings - print(f"Row: {row.x} {row.y}") + print(f"Row: {row.x} {y}") .. |
