From 6b5a1bbd96752a21676bfa6b4a53a75c12c46283 Mon Sep 17 00:00:00 2001 From: Raphael Roberts Date: Mon, 17 May 2021 13:27:52 -0500 Subject: [PATCH] Remove draw funcs --- c2logic/compiler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c2logic/compiler.py b/c2logic/compiler.py index 2453246..638d64a 100644 --- a/c2logic/compiler.py +++ b/c2logic/compiler.py @@ -8,7 +8,7 @@ from pycparser.c_ast import ( Compound, Constant, DeclList, Enum, FileAST, FuncDecl, Struct, TypeDecl, Typename ) -from .consts import builtins, draw_funcs, func_binary_ops, func_unary_ops +from .consts import builtins, func_binary_ops, func_unary_ops from .instructions import ( Instruction, Noop,