Skip to content

Commit f602866

Browse files
author
Jesse Whitehouse
committed
Fix SQLA warning (unnecessary tuple)
Signed-off-by: Jesse Whitehouse <[email protected]>
1 parent 7af013f commit f602866

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/e2e/sqlalchemy/test_queries.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ class SampleObject(base):
153153
__tablename__ = "PySQLTest_{}".format(datetime.datetime.utcnow().strftime("%s"))
154154

155155
name = Column(String(255), primary_key=True)
156-
episodes = Column(Integer),
156+
episodes = Column(Integer)
157157
some_bool = Column(BOOLEAN)
158158

159159
base.metadata.create_all()

0 commit comments

Comments
 (0)