tools/escape-to-c: drop a superfluous f-string

This commit is contained in:
Allison Karlitskaya 2022-01-12 16:23:49 +01:00
parent af7cdcdf5a
commit 6d4a24a3c9
1 changed files with 1 additions and 1 deletions

View File

@ -7,6 +7,6 @@ import json
import sys
# Use a pointer to allow overriding the value
print(f'const char *', sys.argv[1], '=\n',
print('const char *', sys.argv[1], '=\n',
*[json.dumps(line) + '\n' for line in sys.stdin],
';')