fix all linting for pylint3

This commit is contained in:
Jacob Plaster
2018-12-18 11:28:04 +00:00
parent 4ef8be144b
commit 0c9a0fadbc
33 changed files with 2505 additions and 1687 deletions

View File

@@ -1,5 +1,10 @@
name = 'bfxapi'
"""
This module is used to interact with the bitfinex api
"""
from bfxapi.Client import Client
from bfxapi.websockets.GenericWebsocket import GenericWebsocket
from bfxapi.models import *
from .client import Client
from .models import (Order, Trade, OrderBook, Subscription, Wallet,
Position, FundingLoan, FundingOffer, FundingCredit)
from .websockets.GenericWebsocket import GenericWebsocket
NAME = 'bfxapi'