From a5e7156a9b410c845721cad15c45177bc7c91873 Mon Sep 17 00:00:00 2001 From: TestingPlant <49836-TestingPlant@users.noreply.gitlab.gnome.org> Date: Thu, 12 May 2022 00:29:44 +0000 Subject: [PATCH] Replace single quotes in gio/tests/codegen.py This makes the formatting more consistent. --- gio/tests/codegen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gio/tests/codegen.py b/gio/tests/codegen.py index e76c6d243..6ea8e2f83 100644 --- a/gio/tests/codegen.py +++ b/gio/tests/codegen.py @@ -39,7 +39,7 @@ Result = collections.namedtuple("Result", ("info", "out", "err", "subs")) def on_win32(): - return sys.platform.find('win') != -1 + return sys.platform.find("win") != -1 class TestCodegen(unittest.TestCase):