From d6f96b2c53870e04c525193b5195e3a7a1ae29fa Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 17 Aug 2024 16:26:21 +0200 Subject: [PATCH] chore: remove typing imports These shouldn't be star imported, but should be explicitly imported. --- freqtrade/strategy/__init__.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/freqtrade/strategy/__init__.py b/freqtrade/strategy/__init__.py index 6e8fb5da8..d5fb9b7ae 100644 --- a/freqtrade/strategy/__init__.py +++ b/freqtrade/strategy/__init__.py @@ -1,5 +1,4 @@ # flake8: noqa: F401 -from typing import Dict, List, Optional, Union from freqtrade.exchange import ( timeframe_to_minutes, @@ -45,9 +44,4 @@ __all__ = [ "merge_informative_pair", "stoploss_from_absolute", "stoploss_from_open", - # Typings - "List", - "Optional", - "Union", - "Dict", ]