We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29558c2 commit aa0bd69Copy full SHA for aa0bd69
pointblank/datascan.py
@@ -608,17 +608,6 @@ def _generate_profile_ibis(self) -> dict:
608
609
return profile
610
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
622
def get_tabular_report(self) -> GT:
623
column_data = self.profile["columns"]
624
0 commit comments