Fix missing comma

This commit is contained in:
Tat Dat Duong
2024-08-28 17:56:26 +02:00
parent f4dea9c5f7
commit 3bbe09dac4
+1 -1
View File
@@ -37,7 +37,7 @@ def validate_config(config: Config) -> Config:
)
if config.get("node_version"):
if config["node_version"] not in ("20"):
if config["node_version"] not in ("20",):
raise click.UsageError(
f"Unsupported Node.js version: {config['node_version']}. "
"Currently only `node_version: \"20\"` is supported."