Skip to content

Commit 96d97c6

Browse files
committed
Remove settings declaration
1 parent 108f1ae commit 96d97c6

File tree

1 file changed

+0
-7
lines changed
  • investing_algorithm_framework/management

1 file changed

+0
-7
lines changed

investing_algorithm_framework/management/utils.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@
55

66
from investing_algorithm_framework.core.resolvers import ClassResolver
77
from investing_algorithm_framework.management.command import BaseCommand
8-
from investing_algorithm_framework.configuration import settings
9-
10-
# Load the settings
11-
settings = settings
128

139

1410
def find_commands(management_dir: str) -> List[str]:
@@ -36,9 +32,6 @@ def get_commands() -> Dict[str, str]:
3632
for name in find_commands(os.path.join(os.path.dirname(__file__)))
3733
}
3834

39-
if not settings.configured:
40-
return commands
41-
4235
# Load all the commands from the installed apps
4336
return commands
4437

0 commit comments

Comments
 (0)