Skip to content

Commit

Permalink
Fix cython circular import
Browse files Browse the repository at this point in the history
  • Loading branch information
Herklos committed Apr 7, 2020
1 parent c22d690 commit 8060c43
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions octobot_trading/channels/exchange_channel.pxd
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,9 @@ from octobot_channels.channels.channel cimport Channel
from octobot_channels.consumer cimport Consumer, InternalConsumer, SupervisedConsumer
from octobot_channels.producer cimport Producer

from octobot_trading.exchanges.abstract_exchange cimport AbstractExchange
from octobot_trading.exchanges.exchange_manager cimport ExchangeManager

cdef class ExchangeChannel(Channel):
cdef public ExchangeManager exchange_manager
cdef public AbstractExchange exchange
cdef public object exchange_manager
cdef public object exchange

cdef int filter_send_counter
cdef bint should_send_filter
Expand Down

0 comments on commit 8060c43

Please sign in to comment.