Removed utils, moved get_sides to conftest

This commit is contained in:
Sam Germain
2021-09-16 16:25:02 -06:00
parent 5fcb69a0b5
commit dec2f377ff
4 changed files with 7 additions and 10 deletions

View File

@@ -1,3 +0,0 @@
# flake8: noqa: F401
from freqtrade.utils.get_sides import get_sides

View File

@@ -1,5 +0,0 @@
from typing import Tuple
def get_sides(is_short: bool) -> Tuple[str, str]:
return ("sell", "buy") if is_short else ("buy", "sell")