Skip to content
This repository has been archived by the owner on Aug 1, 2024. It is now read-only.

Commit

Permalink
remove unneeded prints
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromedockes committed Apr 26, 2024
1 parent 2a4c452 commit 8f30050
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/skrubview/_html.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ def _get_jinja_env():


def _get_column_filters(dataframe):
print(dataframe)
first_10 = sbd.column_names(dataframe)[:10]
filters = {f"First {len(first_10)}": first_10}
for selector in [
Expand All @@ -46,7 +45,6 @@ def _get_column_filters(dataframe):
filters[re.sub(r"^\((.*)\)$", r"\1", repr(selector))] = selector.expand(
dataframe
)
print(filters)
return filters


Expand Down

0 comments on commit 8f30050

Please sign in to comment.