Skip to content

Commit 2e6c9ea

Browse files
committed
feat(scripts): improve testnet variants listing format
Prefix each testnet variant with a dash for better readability when listing available testnet variants using the --ls option in prepare_cluster_scripts.py.
1 parent aa48ebf commit 2e6c9ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cardano_node_tests/prepare_cluster_scripts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def main() -> int:
8585
args = get_args()
8686

8787
if args.ls:
88-
variants_str = "\n".join(cluster_scripts.get_testnet_variants())
88+
variants_str = "\n".join(f" - {v}" for v in cluster_scripts.get_testnet_variants())
8989
LOGGER.info(f"Available testnet variants:\n{variants_str}")
9090
return 0
9191

0 commit comments

Comments
 (0)