From 0aa5b9a833d3376ea99788f450c10c7b9db56f30 Mon Sep 17 00:00:00 2001 From: TheByronHimes Date: Fri, 15 Dec 2023 11:02:02 +0000 Subject: [PATCH] Rename log_tools to just log --- src/hexkit/{log_tools.py => log.py} | 0 tests/unit/test_logging.py | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename src/hexkit/{log_tools.py => log.py} (100%) diff --git a/src/hexkit/log_tools.py b/src/hexkit/log.py similarity index 100% rename from src/hexkit/log_tools.py rename to src/hexkit/log.py diff --git a/tests/unit/test_logging.py b/tests/unit/test_logging.py index 74b8f75b..f29efe55 100644 --- a/tests/unit/test_logging.py +++ b/tests/unit/test_logging.py @@ -13,7 +13,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # -"""Tests for the log_tools module.""" +"""Tests for the log module.""" import json import logging @@ -22,7 +22,7 @@ import pytest -from hexkit.log_tools import ( +from hexkit.log import ( JsonFormatter, LoggingConfig, RecordCompiler,