summaryrefslogtreecommitdiff
path: root/tests/functional/u/unsupported/unsupported_version_for_f_string.py
blob: c7ae5e385730ca2be0fa40889edf6a4c5a1974a3 (plain)
1
2
3
4
5
"""Tests for the use of f-strings whenever the py-version is set < 3.6"""
# pylint: disable=f-string-without-interpolation

VAR = f"a simple f-string"  # [using-f-string-in-unsupported-version]
VAR_TWO = f"a simple f-string {'with'} interpolation"  # [using-f-string-in-unsupported-version]