diff options
author | Michael Vetter <jubalh@iodoru.org> | 2019-10-07 15:53:17 +0200 |
---|---|---|
committer | Michael Vetter <jubalh@iodoru.org> | 2019-10-07 15:53:17 +0200 |
commit | d3dd95963e354c3e75f4a6e627acb3644c679fbf (patch) | |
tree | 3e45a356f90405e90108eb4dd7b5ab6443c85de1 | |
parent | b3ed21366879c53792277c069766e2d7f6cd5c5b (diff) | |
download | profani-tty-d3dd95963e354c3e75f4a6e627acb3644c679fbf.tar.gz |
Sort includes in python_api.c
-rw-r--r-- | src/plugins/python_api.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/plugins/python_api.c b/src/plugins/python_api.c index 140b4abd..ade24d05 100644 --- a/src/plugins/python_api.c +++ b/src/plugins/python_api.c @@ -32,15 +32,12 @@ * */ -#include "config.h" - #include <Python.h> -#include <frameobject.h> +#include "config.h" +#include <frameobject.h> #include <stdlib.h> - #include <glib.h> - #include "log.h" #include "plugins/api.h" #include "plugins/python_api.h" |