strip whitespaces

This commit is contained in:
hmoon630 2024-08-15 11:25:50 +09:00
parent 2edbdac8b9
commit 32345c2703
No known key found for this signature in database
GPG Key ID: AC68D5BCE61BA732

View File

@ -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