Skip to content

Commit e482fe4

Browse files
committed
fix linting
1 parent 8092abd commit e482fe4

File tree

1 file changed

+3
-3
lines changed
  • metadata-ingestion/src/datahub/ingestion/source/sql

1 file changed

+3
-3
lines changed

metadata-ingestion/src/datahub/ingestion/source/sql/hive.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -777,7 +777,7 @@ def get_schema_fields_for_column(
777777
column,
778778
inspector,
779779
pk_constraints,
780-
partition_keys=partition_keys
780+
partition_keys=partition_keys,
781781
)
782782

783783
if self._COMPLEX_TYPE.match(fields[0].nativeDataType) and isinstance(
@@ -856,7 +856,7 @@ def _process_view(
856856
)
857857

858858
def get_partitions(
859-
self, inspector: Inspector, schema: str, table: str
859+
self, inspector: Inspector, schema: str, table: str
860860
) -> Optional[List[str]]:
861861
partition_columns: List[dict] = inspector.get_indexes(
862862
table_name=table, schema=schema
@@ -865,4 +865,4 @@ def get_partitions(
865865
if partition_column.get("column_names"):
866866
return partition_column.get("column_names")
867867

868-
return []
868+
return []

0 commit comments

Comments
 (0)