mirror of
https://github.com/ghndrx/prowler.git
synced 2026-02-10 23:05:05 +00:00
chore: сhanged concatenation of strings to f-strings to improve readability (#3227)
This commit is contained in:
@@ -281,7 +281,7 @@ class Test_Common_Output_Options:
|
||||
}
|
||||
printed_subscriptions = []
|
||||
for key, value in audit_info.identity.subscriptions.items():
|
||||
intermediate = key + " : " + value
|
||||
intermediate = f"{key} : {value}"
|
||||
printed_subscriptions.append(intermediate)
|
||||
assert (
|
||||
get_assessment_summary(audit_info)
|
||||
|
||||
Reference in New Issue
Block a user