Skip to content

Commit

Permalink
fix: remove debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
cblanken committed Nov 6, 2024
1 parent dac3225 commit 4ec1e65
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions innverse/tables.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ def __init__(self, *args, **kwargs):
self._hidden_cols = hide_cols

def before_render(self, request):
print(self._hidden_cols)
for i, col in enumerate(self.columns):
if i in self._hidden_cols:
self.columns.hide(col.name)
Expand Down Expand Up @@ -150,7 +149,6 @@ def __init__(self, *args, **kwargs):
self._hidden_cols = hide_cols

def before_render(self, request):
print(self._hidden_cols)
for i, col in enumerate(self.columns):
if i in self._hidden_cols:
self.columns.hide(col.name)
Expand Down

0 comments on commit 4ec1e65

Please sign in to comment.