Skip to content

Commit 4a5ae2c

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 9c66c36 commit 4a5ae2c

File tree

1 file changed

+5
-15
lines changed

1 file changed

+5
-15
lines changed

singer_sdk/sql/loaders.py

Lines changed: 5 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -192,9 +192,7 @@ def _build_insert_statement(
192192
)
193193

194194
# Get column names
195-
columns = [
196-
self.conform_name(prop, "column") for prop in schema["properties"]
197-
]
195+
columns = [self.conform_name(prop, "column") for prop in schema["properties"]]
198196

199197
# Build table metadata
200198
meta = sa.MetaData(schema=schema_name)
@@ -291,9 +289,7 @@ def _create_temp_table_default(
291289
)
292290

293291
# Get column names
294-
columns = [
295-
self.conform_name(prop, "column") for prop in schema["properties"]
296-
]
292+
columns = [self.conform_name(prop, "column") for prop in schema["properties"]]
297293

298294
# Build table metadata
299295
meta = sa.MetaData(schema=schema_name)
@@ -376,9 +372,7 @@ def _build_insert_statement(
376372
)
377373

378374
# Get column names
379-
columns = [
380-
self.conform_name(prop, "column") for prop in schema["properties"]
381-
]
375+
columns = [self.conform_name(prop, "column") for prop in schema["properties"]]
382376

383377
# Build table metadata
384378
meta = sa.MetaData(schema=schema_name)
@@ -640,9 +634,7 @@ def _create_temp_table_default(
640634
)
641635

642636
# Get column names
643-
columns = [
644-
self.conform_name(prop, "column") for prop in schema["properties"]
645-
]
637+
columns = [self.conform_name(prop, "column") for prop in schema["properties"]]
646638

647639
# Build table metadata
648640
meta = sa.MetaData(schema=schema_name)
@@ -726,9 +718,7 @@ def _build_insert_statement(
726718
)
727719

728720
# Get column names
729-
columns = [
730-
self.conform_name(prop, "column") for prop in schema["properties"]
731-
]
721+
columns = [self.conform_name(prop, "column") for prop in schema["properties"]]
732722

733723
# Build table metadata
734724
meta = sa.MetaData(schema=schema_name)

0 commit comments

Comments
 (0)