From ddf5ba8cfcfe7d133ddbf888cc6e3af79863c712 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sat, 1 May 2021 18:25:06 -0400 Subject: refactor: pyupgrade --py36-plus tests/**.py --- tests/modules/pkg1/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/modules/pkg1') diff --git a/tests/modules/pkg1/__init__.py b/tests/modules/pkg1/__init__.py index 3390a854..dbef951c 100644 --- a/tests/modules/pkg1/__init__.py +++ b/tests/modules/pkg1/__init__.py @@ -1,2 +1,2 @@ # A simple package for testing with. -print("pkg1.__init__: %s" % (__name__,)) +print(f"pkg1.__init__: {__name__}") -- cgit v1.2.1