From 2df28a9591617fca1d79c80abc32ac6fdf797c6e Mon Sep 17 00:00:00 2001 From: dev0128 Date: Wed, 13 Nov 2024 08:52:39 +0900 Subject: [PATCH] fix: Convert UPPER_WORDS from string to tuple type --- config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.py b/config.py index 92db0d27..f9e50981 100644 --- a/config.py +++ b/config.py @@ -89,8 +89,8 @@ UPPER_WORDS = { "generic": ("vpn", "ios", "xen", "sql", "lxc"), "outscale": ("osc",), "openstack": ("rpm", "loci", "nfv", "ec2api"), - "pve": ("pve"), # string? or tuple? - "ibm": ("ibm"), # string? or tuple? + "pve": ("pve",), + "ibm": ("ibm",), "snowflake": ("sn",), }