Skip to content

Commit 4598dcc

Browse files
committed
Remove strict opt leftovers
1 parent 272721f commit 4598dcc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cloudai/cli/cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,9 +243,9 @@ def generate_report(system_cfg: Path, tests_dir: Path, scenario_cfg: Path, resul
243243
type=click.Path(exists=True, resolve_path=True, path_type=Path, file_okay=False, dir_okay=True),
244244
help="Directory with Test configs.",
245245
)
246-
def verify_configs(configs_dir: Path, tests_dir: Path, strict: bool):
246+
def verify_configs(configs_dir: Path, tests_dir: Path):
247247
"""Verify the configuration TOML files."""
248-
args = argparse.Namespace(configs_dir=configs_dir, tests_dir=tests_dir, strict=strict)
248+
args = argparse.Namespace(configs_dir=configs_dir, tests_dir=tests_dir)
249249
handle_verify_all_configs(args)
250250

251251

0 commit comments

Comments
 (0)