Skip to content

Commit

Permalink
Merge pull request #27 from TogetherCrew/fix/broker
Browse files Browse the repository at this point in the history
Import Enum to fix an import error
  • Loading branch information
cyri113 authored Jan 10, 2024
2 parents a4e8b3f + afe3807 commit 042a4ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/ml/src/server/broker.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import asyncio
import logging
import threading
from typing import Callable, Any, Type, Union
from enum import Enum
from typing import Callable, Any, Type

from tc_messageBroker import RabbitMQ
from tc_messageBroker.rabbit_mq.event import Event
from tc_messageBroker.rabbit_mq.queue import Queue
import tc_messageBroker.rabbit_mq.event.events_microservice as Events

from logger.hivemind_logger import logger
Expand Down

0 comments on commit 042a4ce

Please sign in to comment.