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