Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
Signed-off-by: Kristen Armes <[email protected]>
  • Loading branch information
kristenarmes committed Feb 21, 2024
1 parent cd47570 commit e763430
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -503,8 +503,8 @@ def _fetch_minmax(table: ScrapedTableMetadata, partition_column: str) -> Tuple[s
_table_columns = table.columns
else:
_table_columns = []
columns_with_valid_type = list(map(lambda l: l.name,
filter(lambda l: str(l.data_type).lower() in valid_types, _table_columns)
columns_with_valid_type = list(map(lambda n: n.name,
filter(lambda d: str(d.data_type).lower() in valid_types, _table_columns)
)
)

Expand Down

0 comments on commit e763430

Please sign in to comment.