From 4b95cb48b5c836ec3e4ddf182648a25d431d063c Mon Sep 17 00:00:00 2001 From: antaenc Date: Tue, 3 Dec 2024 14:57:14 -0500 Subject: [PATCH] 43 ant 1 (#44) * #43 * #43 --- CHANGELOG.md | 6 ++++++ setup.cfg | 2 +- sz_tools/_tool_helpers.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0fd04e9..6813687 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning]. ## [Unreleased] +## [0.0.4] - 2024-12-02 + +### Changed in 0.0.4 + +- Small fix to incorrect method merge + ## [0.0.3] - 2024-12-02 ### Changed in 0.0.3 diff --git a/setup.cfg b/setup.cfg index 80e9865..fdcd944 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = python-tools -version = 0.0.3 +version = 0.0.4 author = senzing author_email = support@senzing.com description = Python Tools diff --git a/sz_tools/_tool_helpers.py b/sz_tools/_tool_helpers.py index 682a897..851fa4c 100644 --- a/sz_tools/_tool_helpers.py +++ b/sz_tools/_tool_helpers.py @@ -564,6 +564,7 @@ def print_warning(msg: Union[Exception, str], end_str: str = "\n\n", output_colo """# TODO""" print(f"\n{colorize_output('WARNING:', 'warning', output_color)} {msg}", end=end_str) + def print_response( response: Union[int, str], color_json: bool, @@ -571,7 +572,6 @@ def print_response( scroll_output: bool, color_output: bool, color: str = "", - color_disabled: bool = False, ) -> str: """# TODO""" strip_colors = True