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]