build: removed unused imports refactor cleanup

This commit is contained in:
Mathew Guest 2024-08-02 05:10:18 -06:00
parent 70c5c12fa5
commit cb07dd6bb2
6 changed files with 0 additions and 17 deletions

@ -1,6 +1,3 @@
import logging
import sys
from .app_container import *
from .cfg import *
from .cli import *

@ -4,8 +4,6 @@ import inspect
import os
import sys
from . import _util
def eprint(*args, **kwargs):
"""

@ -1,9 +1,6 @@
import collections
import functools
import inspect
import logging
import os
import sys
import appdirs

@ -4,15 +4,10 @@
# ConfigObj module and it's recommended to use config.spec files to define
# your available configuration of the relevant application.
import argparse
import os
import sys
import appdirs
import configobj
import validate
from . import _util
from ._bootstrap import _bootstrap_logger

@ -1,11 +1,8 @@
import argparse
import inspect
import logging
import re
import sys
import app_skellington
from . import app_container
from ._bootstrap import _bootstrap_logger

@ -3,7 +3,6 @@ import logging.config
import os
import appdirs
import colorlog
from . import _util
from ._bootstrap import _bootstrap_logger, _logger_name