Skip to content

Commit 74603e2

Browse files
committed
Lint fix
1 parent b03d6f0 commit 74603e2

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
@@ -195,9 +195,9 @@ def __init__(
195195
config, self.data_dictionary, self.report, identifiers
196196
)
197197
self.profiler: Optional[SnowflakeProfiler] = profiler
198-
self.snowsight_url_builder: Optional[
199-
SnowsightUrlBuilder
200-
] = snowsight_url_builder
198+
self.snowsight_url_builder: Optional[SnowsightUrlBuilder] = (
199+
snowsight_url_builder
200+
)
201201

202202
# These are populated as side-effects of get_workunits_internal.
203203
self.databases: List[SnowflakeDatabase] = []
@@ -275,9 +275,9 @@ def get_databases(self) -> Optional[List[SnowflakeDatabase]]:
275275
)
276276
return None
277277
else:
278-
ischema_databases: List[
279-
SnowflakeDatabase
280-
] = self.get_databases_from_ischema(databases)
278+
ischema_databases: List[SnowflakeDatabase] = (
279+
self.get_databases_from_ischema(databases)
280+
)
281281

282282
if len(ischema_databases) == 0:
283283
self.structured_reporter.failure(

0 commit comments

Comments
 (0)