Skip to content

Commit

Permalink
Fix method to generate agg feature name. (#326)
Browse files Browse the repository at this point in the history
  • Loading branch information
moromimay authored Jun 4, 2021
1 parent acf7022 commit d0bf61a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def _get_output_name(self, function: object) -> str:
"""
)

base_name = "__".join([self._parent.name, function.__name__])
base_name = "__".join([self._parent.name, str(function.__name__).lower()])
return base_name

@property
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import find_packages, setup

__package_name__ = "butterfree"
__version__ = "1.2.0.dev17"
__version__ = "1.2.0.dev18"
__repository_url__ = "https://github.com/quintoandar/butterfree"

with open("requirements.txt") as f:
Expand Down

0 comments on commit d0bf61a

Please sign in to comment.