Ruff format: more random files

This commit is contained in:
Matthias 2024-05-12 16:33:10 +02:00
parent 73e182260e
commit c9d301e4f9
2 changed files with 4 additions and 7 deletions

View File

@ -10,10 +10,7 @@ twenty_four = FtPrecise(24.0)
def interest(
exchange_name: str,
borrowed: FtPrecise,
rate: FtPrecise,
hours: FtPrecise
exchange_name: str, borrowed: FtPrecise, rate: FtPrecise, hours: FtPrecise
) -> FtPrecise:
"""
Equation to calculate interest on margin trades

View File

@ -16,9 +16,9 @@ class BacktestResultType(TypedDict):
def get_BacktestResultType_default() -> BacktestResultType:
return {
'metadata': {},
'strategy': {},
'strategy_comparison': [],
"metadata": {},
"strategy": {},
"strategy_comparison": [],
}