Skip to content

Commit 5c477b2

Browse files
committed
lint
1 parent 5900271 commit 5c477b2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

metadata-ingestion/src/datahub/ingestion/source/snowflake/snowflake_schema_gen.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -186,9 +186,9 @@ def __init__(
186186
config, self.data_dictionary, self.report, identifiers
187187
)
188188
self.profiler: Optional[SnowflakeProfiler] = profiler
189-
self.snowsight_url_builder: Optional[
190-
SnowsightUrlBuilder
191-
] = snowsight_url_builder
189+
self.snowsight_url_builder: Optional[SnowsightUrlBuilder] = (
190+
snowsight_url_builder
191+
)
192192

193193
# These are populated as side-effects of get_workunits_internal.
194194
self.databases: List[SnowflakeDatabase] = []
@@ -269,9 +269,9 @@ def get_databases(self) -> Optional[List[SnowflakeDatabase]]:
269269
)
270270
return None
271271
else:
272-
ischema_databases: List[
273-
SnowflakeDatabase
274-
] = self.get_databases_from_ischema(databases)
272+
ischema_databases: List[SnowflakeDatabase] = (
273+
self.get_databases_from_ischema(databases)
274+
)
275275

276276
if len(ischema_databases) == 0:
277277
self.structured_reporter.failure(

0 commit comments

Comments
 (0)