Skip to content
Merged
Prev Previous commit
Next Next commit
style: wrap long _drop_all_version_tables signature
Signed-off-by: yassinnouh21 <yassinnouh21@gmail.com>
  • Loading branch information
YassinNouh21 authored and ntkathole committed Apr 6, 2026
commit 386d01ace3dcfbf8e55c0947ec25c8a29b0b2000
Original file line number Diff line number Diff line change
Expand Up @@ -845,7 +845,9 @@ def _drop_table_and_index(table_name):
)


def _drop_all_version_tables(cur, project: str, table: FeatureView, schema_name: Optional[str] = None) -> None:
def _drop_all_version_tables(
cur, project: str, table: FeatureView, schema_name: Optional[str] = None
) -> None:
"""Drop the base table and all versioned tables (e.g. _v1, _v2, ...)."""
base = f"{project}_{table.name}"
if schema_name:
Expand Down
Loading