From c3ce2bacdee205e046487427bdd2088c4f8bcd16 Mon Sep 17 00:00:00 2001 From: Jeff Epler Date: Wed, 5 May 2021 09:31:34 -0500 Subject: [PATCH] runtime: Remove unneeded includes objtype.h got included twice, and vfs.h is unneeded. --- py/runtime.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/py/runtime.c b/py/runtime.c index 8a60b90713..740457c462 100644 --- a/py/runtime.c +++ b/py/runtime.c @@ -30,15 +30,11 @@ #include #include - -#include "extmod/vfs.h" - #include "py/parsenum.h" #include "py/compile.h" #include "py/mperrno.h" #include "py/objstr.h" #include "py/objtuple.h" -#include "py/objtype.h" #include "py/objlist.h" #include "py/objtype.h" #include "py/objmodule.h"