Skip to content

Commit c26425f

Browse files
[patch]
1 parent e06d3b7 commit c26425f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

python/src/mas/cli/install/settings/aiSettings.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def configAi(self, silentMode=False) -> None:
100100
# Check MAS version - AiCfg is only supported in MAS 9.2+
101101
mas_channel = self.getParam("mas_channel")
102102
is_mas_92_or_later = False
103-
103+
104104
if mas_channel:
105105
try:
106106
# Extract major.minor version (e.g., "9.2" from "9.2.0")
@@ -111,7 +111,7 @@ def configAi(self, silentMode=False) -> None:
111111
is_mas_92_or_later = (major > 9) or (major == 9 and minor >= 2)
112112
except (ValueError, IndexError):
113113
pass
114-
114+
115115
if is_mas_92_or_later:
116116
# AI Service will be installed - defer AiCfg generation to pipeline
117117
if not silentMode:
@@ -149,7 +149,7 @@ def configAi(self, silentMode=False) -> None:
149149
"If you upgrade to MAS 9.2+ in the future, you can configure AiCfg then.",
150150
]
151151
)
152-
152+
153153
self.setParam("configure_aiassistant", "none")
154154
print_formatted_text("\n⚠️ AiCfg configuration skipped (requires MAS 9.2+)")
155155
else:

0 commit comments

Comments
 (0)