chore: сhanged concatenation of strings to f-strings to improve readability (#3227)

This commit is contained in:
Evgenii
2023-12-28 10:51:00 +03:00
committed by GitHub
parent 0fff0568fa
commit ceabe8ecba
5 changed files with 6 additions and 6 deletions

View File

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