Skip to content

Commit aaa73aa

Browse files
authored
chore: added missing closing bracket (#1121)
1 parent d2568da commit aaa73aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ SQLAlchemy
106106
from sqlalchemy.schema import *
107107
engine = create_engine('bigquery://project')
108108
table = Table('dataset.table', MetaData(bind=engine), autoload=True)
109-
print(select([func.count('*')], from_obj=table().scalar())
109+
print(select([func.count('*')], from_obj=table().scalar()))
110110
111111
112112
Project

0 commit comments

Comments
 (0)