Skip to content

Commit cbfe25e

Browse files
committed
Fix flake8 warnings
1 parent 8cba943 commit cbfe25e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

investing_algorithm_framework/app/algorithm/algorithm.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1+
import inspect
12
import logging
23
import re
34
from 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
96
from 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

1111
logger = logging.getLogger("investing_algorithm_framework")
1212

investing_algorithm_framework/app/algorithm/algorithm_factory.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)