From 85f3fc2022265d69105468468787825f93580d29 Mon Sep 17 00:00:00 2001 From: Eli Schwartz Date: Sun, 12 Jun 2022 11:49:37 -0400 Subject: flake8: don't use f-strings for strings without formatting --- mesonbuild/modules/python.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mesonbuild/modules/python.py') diff --git a/mesonbuild/modules/python.py b/mesonbuild/modules/python.py index 1be9acff1..31be45019 100644 --- a/mesonbuild/modules/python.py +++ b/mesonbuild/modules/python.py @@ -195,7 +195,7 @@ class PythonSystemDependency(SystemDependency, _PythonDependencyBase): if comp.id == "gcc": if imp_lower == 'pypy' and verdot == '3.8': # The naming changed between 3.8 and 3.9 - libpath = Path(f'libpypy3-c.dll') + libpath = Path('libpypy3-c.dll') elif imp_lower == 'pypy': libpath = Path(f'libpypy{verdot}-c.dll') else: -- cgit v1.2.3