We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9acc80 commit 0bbccf4Copy full SHA for 0bbccf4
src/cloudai/systems/standalone/standalone_system.py
@@ -16,8 +16,6 @@
16
17
import logging
18
19
-from pydantic import ConfigDict
20
-
21
from cloudai.core import BaseJob, System
22
from cloudai.util import CommandShell
23
@@ -29,8 +27,6 @@ class StandaloneSystem(System):
29
27
This class is used for systems that execute commands directly without a job scheduler.
30
28
"""
31
32
- model_config = ConfigDict(extra="forbid", arbitrary_types_allowed=True)
33
34
scheduler: str = "standalone"
35
monitor_interval: int = 1
36
cmd_shell: CommandShell = CommandShell()
0 commit comments