Skip to content

Commit aa0bd69

Browse files
committed
Remove unused DataScan method
1 parent 29558c2 commit aa0bd69

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

pointblank/datascan.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -608,17 +608,6 @@ def _generate_profile_ibis(self) -> dict:
608608

609609
return profile
610610

611-
def _get_column_data(self, column: str) -> dict | None:
612-
column_data = self.profile["columns"]
613-
614-
# Find the column in the column data and return the
615-
for col in column_data:
616-
if col["column_name"] == column:
617-
return col
618-
619-
# If the column is not found, return None
620-
return None
621-
622611
def get_tabular_report(self) -> GT:
623612
column_data = self.profile["columns"]
624613

0 commit comments

Comments
 (0)