mirror of
https://github.com/aljazceru/bitfinex-api-py.git
synced 2025-12-24 01:04:22 +01:00
Apply isort to all python files (bfxapi/**/*.py).
This commit is contained in:
@@ -1,3 +1,2 @@
|
||||
from .public_channels_handler import PublicChannelsHandler
|
||||
|
||||
from .auth_events_handler import AuthEventsHandler
|
||||
from .public_channels_handler import PublicChannelsHandler
|
||||
|
||||
@@ -1,14 +1,11 @@
|
||||
from typing import \
|
||||
Dict, Tuple, Any
|
||||
from typing import Any, Dict, Tuple
|
||||
|
||||
from pyee.base import EventEmitter
|
||||
|
||||
from bfxapi.types import serializers
|
||||
|
||||
from bfxapi.types.dataclasses import FundingOffer, Order
|
||||
from bfxapi.types.serializers import _Notification
|
||||
|
||||
from bfxapi.types.dataclasses import \
|
||||
Order, FundingOffer
|
||||
|
||||
class AuthEventsHandler:
|
||||
__ABBREVIATIONS = {
|
||||
|
||||
@@ -1,13 +1,16 @@
|
||||
from typing import \
|
||||
List, Any, cast
|
||||
from typing import Any, List, cast
|
||||
|
||||
from pyee.base import EventEmitter
|
||||
|
||||
from bfxapi.types import serializers
|
||||
|
||||
from bfxapi.websocket.subscriptions import \
|
||||
Subscription, Ticker, Trades, \
|
||||
Book, Candles, Status
|
||||
from bfxapi.websocket.subscriptions import (
|
||||
Book,
|
||||
Candles,
|
||||
Status,
|
||||
Subscription,
|
||||
Ticker,
|
||||
Trades,
|
||||
)
|
||||
|
||||
_CHECKSUM = "cs"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user