From 59804ce588c7065d2814657b1d047a7408ddde08 Mon Sep 17 00:00:00 2001 From: sambhxv Date: Sat, 28 Sep 2024 16:00:24 +0530 Subject: [PATCH] added missing closing bracket don't know why is it not fixed by anyone, its one of those most recognizable errors. --- 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