mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 02:12:01 +00:00
chore: fix line too long issue
This commit is contained in:
parent
0b8dfa6878
commit
aa6c30ade6
|
@ -1698,7 +1698,9 @@ class Trade(ModelBase, LocalTrade):
|
|||
)
|
||||
price_precision: Mapped[Optional[float]] = mapped_column(Float(), nullable=True) # type: ignore
|
||||
precision_mode: Mapped[Optional[int]] = mapped_column(Integer, nullable=True) # type: ignore
|
||||
precision_mode_price: Mapped[Optional[int]] = mapped_column(Integer, nullable=True) # type: ignore
|
||||
precision_mode_price: Mapped[Optional[int]] = mapped_column( # type: ignore
|
||||
Integer, nullable=True
|
||||
)
|
||||
contract_size: Mapped[Optional[float]] = mapped_column(Float(), nullable=True) # type: ignore
|
||||
|
||||
# Leverage trading properties
|
||||
|
|
Loading…
Reference in New Issue
Block a user