diff --git a/README.md b/README.md index cb8feb0..9487f40 100644 --- a/README.md +++ b/README.md @@ -206,7 +206,7 @@ DB_NAME = "world-db" DB_USER = "world" DB_PASS = "world123" -with psycopg.connect(dbname=DB_NAME, user=DB_USER, password=DB_PASS, host=DB_HOST, port=DB_PORT) as conn: +with psycopg.connect(dbname=DB_NAME, user=DB_USER, password=DB_PASS, host=DB_HOST, port=DB_PORT) as conn: with conn.cursor() as cur: cur.execute("select count(*) from city")