Merge branch 'format-codegen' into 'main'

Replace single quotes in gio/tests/codegen.py

See merge request GNOME/glib!2651
This commit is contained in:
Philip Withnall 2022-05-12 10:24:54 +00:00
commit da2702646c

View File

@ -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):