From 4734265f2ec5aad067f04ca34bf98cf60aeaa0f2 Mon Sep 17 00:00:00 2001 From: Interitio Date: Sun, 31 May 2026 06:24:57 +1000 Subject: [PATCH] fix: Get the modules the right way around --- __init__.py | 5 +++++ customcmd/__init__.py | 5 +---- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/__init__.py b/__init__.py index 2447b50..1ca5b84 100644 --- a/__init__.py +++ b/__init__.py @@ -1 +1,6 @@ +import logging + +logger = logging.getLogger(__name__) + from .customcmd import * +from .twitch import setup as twitch_setup diff --git a/customcmd/__init__.py b/customcmd/__init__.py index 8c2efc5..881d340 100644 --- a/customcmd/__init__.py +++ b/customcmd/__init__.py @@ -1,6 +1,3 @@ -import logging +from .. import logger -logger = logging.getLogger(__name__) - -from .twitch import setup as twitch_setup from .parser import *