diff --git a/plotly_calplot/calplot.py b/plotly_calplot/calplot.py index 805abc2..47ba7c2 100644 --- a/plotly_calplot/calplot.py +++ b/plotly_calplot/calplot.py @@ -156,9 +156,7 @@ def calplot( If the date column is already in datetime format, this parameter will be ignored. """ - print(data[x]) data[x] = validate_date_column(data[x], date_fmt) - print(data[x]) unique_years = data[x].dt.year.unique() unique_years_amount = len(unique_years) if years_title: diff --git a/pyproject.toml b/pyproject.toml index e6d730a..a13cd4a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "plotly_calplot" -version = "0.1.19" +version = "0.1.20" description = "Calendar Plot made with Plotly" authors = ["Bruno Rodrigues Silva "] license = "MIT" diff --git a/tests/test_layout_formatter.py b/tests/test_layout_formatter.py index 10def29..2f309cc 100644 --- a/tests/test_layout_formatter.py +++ b/tests/test_layout_formatter.py @@ -42,7 +42,6 @@ def test_should_create_layout_with_light_theme(self) -> None: result_layout = decide_layout( False, "title", ["January", "March", "April"], [0, 1, 2] ) - print(result_layout) self.assertTrue(type(result_layout) == go.Layout) def test_should_create_month_lines(self) -> None: