summaryrefslogtreecommitdiffstats
path: root/openbb_platform/core/openbb_core/app/model/command_context.py
diff options
context:
space:
mode:
Diffstat (limited to 'openbb_platform/core/openbb_core/app/model/command_context.py')
-rw-r--r--openbb_platform/core/openbb_core/app/model/command_context.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/openbb_platform/core/openbb_core/app/model/command_context.py b/openbb_platform/core/openbb_core/app/model/command_context.py
index 052fb5bc780..977df7a485b 100644
--- a/openbb_platform/core/openbb_core/app/model/command_context.py
+++ b/openbb_platform/core/openbb_core/app/model/command_context.py
@@ -1,3 +1,5 @@
+"""Command Context."""
+
from pydantic import BaseModel, Field
from openbb_core.app.model.system_settings import SystemSettings
@@ -5,5 +7,7 @@ from openbb_core.app.model.user_settings import UserSettings
class CommandContext(BaseModel):
+ """Command Context."""
+
user_settings: UserSettings = Field(default_factory=UserSettings)
system_settings: SystemSettings = Field(default_factory=SystemSettings)