Skip to content

Commit

Permalink
fix: same improvements on feature class
Browse files Browse the repository at this point in the history
  • Loading branch information
jagalindo committed Jul 21, 2024
1 parent a82b14d commit fe6c946
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions flamapy/metamodels/fm_metamodel/models/feature_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,9 @@ def is_leaf(self) -> bool:
def __str__(self) -> str:
return self.name

def __repr__(self) -> str:
return f"{self.name}"

def __hash__(self) -> int:
return hash(self.name)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def read_requirements(file):

setuptools.setup(
name="flamapy-fm",
version="2.0.0.dev4",
version="2.0.0.dev5",
author="Flamapy",
author_email="[email protected]",
description="flamapy-fm is a plugin to Flamapy module",
Expand Down

0 comments on commit fe6c946

Please sign in to comment.