From 538b3952d371ec4460ddab352b66ab195785e514 Mon Sep 17 00:00:00 2001 From: sambhxv Date: Sat, 28 Sep 2024 16:15:07 +0530 Subject: [PATCH] chore: added missing closing bracket --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 5f77e86f..ad269996 100644 --- a/README.rst +++ b/README.rst @@ -106,7 +106,7 @@ SQLAlchemy from sqlalchemy.schema import * engine = create_engine('bigquery://project') table = Table('dataset.table', MetaData(bind=engine), autoload=True) - print(select([func.count('*')], from_obj=table().scalar()) + print(select([func.count('*')], from_obj=table().scalar())) Project