Skip to content

Commit

Permalink
Small bug fix, bump to 0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mmarkakis committed Aug 1, 2024
1 parent b69f6e6 commit e6cd9f5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "eccs"
version = "0.1.2"
version = "0.1.3"
authors = [
{ name="Markos Markakis", email="markakis@mit.edu"},
{ name="Sylvia Ziyu Zhang", email="sylziyuz@mit.edu"},
Expand Down
3 changes: 2 additions & 1 deletion src/eccs/eccs.py
Original file line number Diff line number Diff line change
Expand Up @@ -704,7 +704,8 @@ def suggest_best_single_adjustment_set_change(
"""
Printer.printv("Computing and suggesting best single adjustment set change")
Printer.printv(
f"The current cache size is {len(self._cached_edit_options)} and the acceptance test returns {self._cached_acceptance_test()}"
f"""The current cache size is {len(self._cached_edit_options)} and the acceptance test """
f"""returns {self._cached_acceptance_test() if self._cached_acceptance_test is not None else None}"""
)

if len(self._cached_edit_options) > 0 and self._cached_acceptance_test():
Expand Down

0 comments on commit e6cd9f5

Please sign in to comment.