Skip to content

Commit

Permalink
remove random prints
Browse files Browse the repository at this point in the history
  • Loading branch information
Bruno Rodrigues committed Dec 6, 2023
1 parent cd54c7d commit c12cc6f
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
2 changes: 0 additions & 2 deletions plotly_calplot/calplot.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
license = "MIT"
Expand Down
1 change: 0 additions & 1 deletion tests/test_layout_formatter.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit c12cc6f

Please sign in to comment.