Improve some import statements.

This commit is contained in:
cfreksen 2017-10-31 19:52:53 +01:00
parent e7638887fd
commit 4281442960
No known key found for this signature in database
GPG Key ID: EAC13EE101008978
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
import ply.lex as lex
import ply.yacc as yacc
import llvm_emulator.ll as ll
from llvm_emulator import ll
class LLVMParser(object):

View File

@ -1,6 +1,6 @@
from enum import Enum
import llvm_emulator.ll as ll
from llvm_emulator import ll
def TODO(msg):