From 4ef74e027f43b7ee9345c17ef86dfc9bd18e8377 Mon Sep 17 00:00:00 2001 From: Leo Vasanko Date: Thu, 27 Aug 2026 13:41:31 +0000 Subject: [PATCH] Re-export from kanta configure_logging. --- kanta/__init__.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/kanta/__init__.py b/kanta/__init__.py index e34a809..84a0ea7 100644 --- a/kanta/__init__.py +++ b/kanta/__init__.py @@ -1,5 +1,4 @@ from .kanta import Kanta +from .logging import configure_logging -__all__ = [ - "Kanta", -] +__all__ = ["Kanta", "configure_logging"]