From 32345c2703778950ca9cbe7a2a03c7acb0ed7424 Mon Sep 17 00:00:00 2001 From: hmoon630 Date: Thu, 15 Aug 2024 11:25:50 +0900 Subject: [PATCH] strip whitespaces --- utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils.py b/utils.py index c5460d1..6540d25 100644 --- a/utils.py +++ b/utils.py @@ -48,7 +48,7 @@ def parse_excluded_resources(): if "," in line: resource, scope = line.strip().split(",") else: - resource = line + resource = line.strip() scope = "all" excluded_resources[resource] = scope return excluded_resources