From 3cae3140f35b4f2203240b5dfb2b33c8e8407a0d Mon Sep 17 00:00:00 2001 From: Raphael Roberts Date: Mon, 17 May 2021 12:58:29 -0500 Subject: [PATCH] Change imports --- c2logic/compiler.py | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/c2logic/compiler.py b/c2logic/compiler.py index 3726cfb..087b484 100644 --- a/c2logic/compiler.py +++ b/c2logic/compiler.py @@ -10,8 +10,20 @@ from pycparser.c_ast import ( from .consts import builtins, draw_funcs, func_binary_ops, func_unary_ops from .instructions import ( - BinaryOp, Draw, DrawFlush, Enable, End, FunctionCall, GetLink, Goto, Instruction, JumpCondition, - Print, PrintFlush, Radar, RawAsm, Read, RelativeJump, Return, Sensor, Set, Shoot, UnaryOp, Write + Instruction, + Noop, + Set, + BinaryOp, + UnaryOp, + JumpCondition, + FunctionCall, + Return, + RelativeJump, + End, + Goto, + RawAsm, + ParsedInstruction, + ParsedInstructionFactory, ) @dataclass