summaryrefslogtreecommitdiff
path: root/tests/functional/f/f_string_without_interpolation.py
blob: 4d6e366341be6a0fea8482edf4408245a9aed7cb (plain)
1
2
3
4
5
6
7
8
9
# pylint: disable=missing-module-docstring
import math

VALUE = 1

print(f"some value {VALUE}")
print(f'pi: {math.pi:.3f}')

print(f"ERROR")  # [f-string-without-interpolation]