We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 108f1ae commit 96d97c6Copy full SHA for 96d97c6
investing_algorithm_framework/management/utils.py
@@ -5,10 +5,6 @@
5
6
from investing_algorithm_framework.core.resolvers import ClassResolver
7
from investing_algorithm_framework.management.command import BaseCommand
8
-from investing_algorithm_framework.configuration import settings
9
-
10
-# Load the settings
11
-settings = settings
12
13
14
def find_commands(management_dir: str) -> List[str]:
@@ -36,9 +32,6 @@ def get_commands() -> Dict[str, str]:
36
32
for name in find_commands(os.path.join(os.path.dirname(__file__)))
37
33
}
38
34
39
- if not settings.configured:
40
- return commands
41
42
35
# Load all the commands from the installed apps
43
return commands
44
0 commit comments