Skip to content

Commit

Permalink
small changes from comments
Browse files Browse the repository at this point in the history
  • Loading branch information
ChaitanMohr committed Feb 29, 2024
1 parent 1794853 commit d1d8044
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion tests/numeric/test_TwoColumnOperatorTransformer.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,12 @@ def test_column_size_error(self):
ValueError,
match="columns must be a list containing two column names",
):
TwoColumnOperatorTransformer("mul", [], "c", pd_method_kwargs={"axis": 1})
TwoColumnOperatorTransformer(
"mul",
["a"],
"c",
pd_method_kwargs={"axis": 1},
)

def test_axis_not_present_error(self):
"""Checks that an error is raised if no axis element present in pd_method_kwargs dict."""
Expand Down
2 changes: 1 addition & 1 deletion tubular/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.2.3"
__version__ = "1.3.0"

0 comments on commit d1d8044

Please sign in to comment.