summaryrefslogtreecommitdiff
path: root/tests/functional/l/logging/logging_fstring_interpolation_py37.py
blob: 963b2ce8ce39bc55d8479f994f7e92c2a0896e23 (plain)
1
2
3
4
5
"""Tests for logging-fstring-interpolation with f-strings"""
import logging

VAR = "string"
logging.error(f"{VAR}")  # [logging-fstring-interpolation]