diff options
author | Hugo <hugovk@users.noreply.github.com> | 2017-11-28 10:33:31 +0200 |
---|---|---|
committer | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2017-11-28 16:06:55 +0000 |
commit | ea76504cd1f8c32c0eb15d337d5e6b44af1cb301 (patch) | |
tree | fb36d3e5a010e2160d54cfb574c5ebb9160f0dfe | |
parent | 283de270987dbd17a3cf2285da60722d4b5cc001 (diff) | |
download | psycopg2-ea76504cd1f8c32c0eb15d337d5e6b44af1cb301.tar.gz |
Remove trailing semicolons
-rw-r--r-- | sandbox/async.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sandbox/async.py b/sandbox/async.py index 17e96d0..3766fbb 100644 --- a/sandbox/async.py +++ b/sandbox/async.py @@ -22,15 +22,15 @@ def sleep(curs): # DECLARE zz INSENSITIVE SCROLL CURSOR WITH HOLD FOR # SELECT now(); # FOR READ ONLY;""", async = 1) -curs.execute("SELECT now() AS foo", async=1); +curs.execute("SELECT now() AS foo", async=1) sleep(curs) print curs.fetchall() #curs.execute(""" # FETCH FORWARD 1 FROM zz;""", async = 1) -curs.execute("SELECT now() AS bar", async=1); +curs.execute("SELECT now() AS bar", async=1) print curs.fetchall() -curs.execute("SELECT now() AS bar"); +curs.execute("SELECT now() AS bar") sleep(curs) |