Skip to content

Commit 99f4689

Browse files
richardscholtensmwatts15
authored andcommitted
Fix linting error
1 parent c8a95d1 commit 99f4689

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

rdflib_sqlalchemy/sql.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,9 @@ def union_select(select_components, distinct=False, select_type=TRIPLE_SELECT):
8282
expression.literal_column("NULL").label("objdatatype")]).where(
8383
whereClause)
8484
elif tableType == ASSERTED_NON_TYPE_PARTITION:
85-
all_table_columns = [c for c in table.columns] + [expression.literal_column("NULL").label("objlanguage"), expression.literal_column("NULL").label("objdatatype")]
85+
all_table_columns = [c for c in table.columns] + \
86+
[expression.literal_column("NULL").label("objlanguage"),
87+
expression.literal_column("NULL").label("objdatatype")]
8688
if whereClause is not None:
8789
select_clause = expression.select(*all_table_columns).select_from(table).where(whereClause)
8890
else:

0 commit comments

Comments
 (0)