Skip to content

Commit

Permalink
Clean print statements
Browse files Browse the repository at this point in the history
Signed-off-by: Itay Dafna <i.b.dafna@gmail.com>
  • Loading branch information
ibdafna committed Apr 20, 2022
1 parent 4be65e2 commit a620ca8
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion ipydatagrid/datagrid.py
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,6 @@ class DataGrid(DOMWidget):
).tag(sync=True)

def __init__(self, dataframe, **kwargs):
# print(kwargs)
# Setting default index name if not explicitly
# set by the user.
if "index_name" in kwargs:
Expand Down
1 change: 0 additions & 1 deletion tests/test_datagrid.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ def test_get_cell_value_by_numerical_index(

def test_data_object_generation(dataframe: pd.DataFrame) -> None:
data_object = DataGrid.generate_data_object(dataframe, "ipydguuid", "key")
print(data_object)
expected_output = {
"data": [
{"key": "One", "A": 1, "B": 4, "ipydguuid": 0},
Expand Down

0 comments on commit a620ca8

Please sign in to comment.