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.
tsv_path
inspector_cli
1 parent befb205 commit e2b7cebCopy full SHA for e2b7ceb
devtools/inspector/_inspector.py
@@ -1168,7 +1168,6 @@ def _prepare_dataframe(
1168
1169
return filtered_column_df
1170
1171
-
1172
def print_data_tabular(
1173
self,
1174
file: IO[str] = sys.stdout,
@@ -1190,7 +1189,6 @@ def print_data_tabular(
1190
1189
df = self._prepare_dataframe(include_units, include_delegate_debug_data)
1191
display_or_print_df(df, file)
1192
1193
1194
def save_data_to_tsv(
1195
1196
file: IO[str],
@@ -1207,7 +1205,6 @@ def save_data_to_tsv(
1207
1205
df = self._prepare_dataframe()
1208
1206
df.to_csv(file, sep="\t")
1209
1210
1211
# TODO: write unit test
1212
def find_total_for_module(self, module_name: str) -> float:
1213
"""
0 commit comments