Use f-string instead of concatenation
Signed-off-by: Gabor Mezei <gabor.mezei@arm.com>
diff --git a/tests/scripts/depends.py b/tests/scripts/depends.py
index 17063c4..7cc0f5b 100755
--- a/tests/scripts/depends.py
+++ b/tests/scripts/depends.py
@@ -183,8 +183,8 @@
header += '#if '
if value:
header += '!'
- header += 'defined(' + option + ')\n'
- header += '#error "' + option + '"\n'
+ header += f'defined({option})\n'
+ header += f'#error "{option}"\n'
header += '#endif\n'
include_path = ['include', 'tf-psa-crypto/include',
'tf-psa-crypto/drivers/builtin/include']