mirror of
https://github.com/aljazceru/bitfinex-api-py.git
synced 2026-01-22 06:54:28 +01:00
Small fix in package import statements.
This commit is contained in:
@@ -2,8 +2,8 @@ from decimal import Decimal
|
||||
from datetime import datetime
|
||||
|
||||
from typing import Union, Optional, List, Tuple
|
||||
from ..types import JSON
|
||||
from ..enums import OrderType, FundingOfferType
|
||||
from .. enums import OrderType, FundingOfferType
|
||||
from ... utils.JSONEncoder import JSON
|
||||
|
||||
class BfxWebsocketInputs(object):
|
||||
def __init__(self, __handle_websocket_input):
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
from ..enums import *
|
||||
from .. enums import *
|
||||
|
||||
class Channels(str, Enum):
|
||||
TICKER = "ticker"
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
from typing import Type, Tuple, List, Dict, TypedDict, Union, Optional, Any
|
||||
from typing import Optional
|
||||
|
||||
from dataclasses import dataclass
|
||||
|
||||
from ..labeler import _Type
|
||||
from ..notification import Notification
|
||||
from ..utils.JSONEncoder import JSON
|
||||
from .. labeler import _Type
|
||||
from .. notification import Notification
|
||||
from .. utils.JSONEncoder import JSON
|
||||
|
||||
#region Type hinting for Websocket Public Channels
|
||||
|
||||
|
||||
Reference in New Issue
Block a user