From: Michael Tremer Date: Sat, 12 Oct 2024 17:35:15 +0000 (+0000) Subject: python: Reformat some code X-Git-Tag: 0.9.30~1059 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=42c6b21415a86109631455fd527d757a894ba570;p=pakfire.git python: Reformat some code Signed-off-by: Michael Tremer --- diff --git a/src/python/pakfiremodule.c b/src/python/pakfiremodule.c index 4a4712ea6..37edc22b7 100644 --- a/src/python/pakfiremodule.c +++ b/src/python/pakfiremodule.c @@ -23,7 +23,6 @@ #include #include -#include #include "archive.h" #include "archive_file.h" @@ -101,14 +100,19 @@ static PyObject* Pakfire_version_compare(PyObject* self, PyObject* args) { } static PyMethodDef pakfireModuleMethods[] = { - {"supported_arches", (PyCFunction)Pakfire_supported_arches, METH_NOARGS, NULL }, + { + "supported_arches", + (PyCFunction)Pakfire_supported_arches, + METH_NOARGS, + NULL, + }, { "version_compare", (PyCFunction)Pakfire_version_compare, METH_VARARGS, NULL, }, - { NULL, NULL, 0, NULL } + { NULL, NULL, 0, NULL }, }; static struct PyModuleDef moduledef = {