File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
investing_algorithm_framework/app/algorithm Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1+ import inspect
12import logging
23import re
34from typing import List
4- import inspect
55
6- from investing_algorithm_framework .domain import OperationalException , \
7- random_string , MarketDataSource
8- from investing_algorithm_framework .app .strategy import TradingStrategy
96from investing_algorithm_framework .app .app_hook import AppHook
7+ from investing_algorithm_framework .app .strategy import TradingStrategy
8+ from investing_algorithm_framework .domain import OperationalException , \
9+ MarketDataSource
1010
1111logger = logging .getLogger ("investing_algorithm_framework" )
1212
Original file line number Diff line number Diff line change @@ -103,6 +103,6 @@ def create_algorithm(
103103 if algorithm .name is None :
104104 algorithm .name = AlgorithmFactory .create_algorithm_name (algorithm )
105105
106- # Validate the algorithm name
106+ # Validate the algorithm name
107107 validate_algorithm_name (algorithm .name )
108108 return algorithm
You can’t perform that action at this time.
0 commit comments