Remove extra line from docstrings

small_kucoin_fixes
jaredgoldman 2023-04-03 19:45:24 -04:00
parent 48c3b333b2
commit c68fcf7e1c
1 changed files with 0 additions and 4 deletions

View File

@ -18,7 +18,6 @@ Kucoin broker backend
'''
from random import randint
from typing import (
Any,
Callable,
@ -73,7 +72,6 @@ class KucoinMktPair(Struct, frozen=True):
Kucoin's pair format
'''
baseCurrency: str
baseIncrement: float
baseMaxSize: float
@ -98,7 +96,6 @@ class AccountTrade(Struct, frozen=True):
Historical trade format
'''
id: str
currency: str
amount: float
@ -140,7 +137,6 @@ class KucoinL2(Struct, frozen=True):
Real-time L2 order book format
'''
asks: list[list[float]]
bids: list[list[float]]
timestamp: float