Skip to content

Commit

Permalink
Merge pull request #64 from RedAtman/dev
Browse files Browse the repository at this point in the history
Fix: Import logger module correctly
  • Loading branch information
RedAtman authored Aug 3, 2024
2 parents bd485d9 + a104a88 commit d192fa8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utils/lock/thread.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,12 @@
# TODO: ResultProcess unable to collect results yet


from importlib import import_module
import logging
from multiprocessing import Process
from threading import Thread
from typing import Callable


import_module("utils.logger.init")
logger = logging.getLogger()


Expand Down Expand Up @@ -177,5 +175,7 @@ def run_tests():


if __name__ == "__main__":
from importlib import import_module

import_module("utils.logger.init")
run_tests()

0 comments on commit d192fa8

Please sign in to comment.