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 903b8b6 commit 43aeb62Copy full SHA for 43aeb62
mdagent/tools/base_tools/simulation_tools/setup_and_run.py
@@ -1314,7 +1314,8 @@ def _parse_cutoff(self, cutoff):
1314
1315
# Remove spaces and convert to lowercase for easier parsing
1316
cutoff = cutoff.replace(" ", "").lower()
1317
-
+ if cutoff.endswith("s"):
1318
+ cutoff = cutoff[:-1]
1319
# Check for multiplication symbol and split if necessary
1320
if "*" in cutoff:
1321
# Split on the '*' and extract the numerical part and the unit part
0 commit comments