From c9055243c3ace9d02ba376c09427e53f347fba1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B8rgen=20Lien=20Sell=C3=A6g?= Date: Sat, 25 May 2019 14:22:13 +0200 Subject: [PATCH] organize imports --- src/config_module.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config_module.cc b/src/config_module.cc index 902a9aa..119a5f0 100644 --- a/src/config_module.cc +++ b/src/config_module.cc @@ -1,6 +1,6 @@ #include "config.h" -#include #include "python_type_casters.h" +#include void Config::init_module(py::module &api) { py::class_> config(api, "Config");