diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2015-02-17 12:23:42 +0100 |
|---|---|---|
| committer | serpilliere <serpilliere@users.noreply.github.com> | 2015-02-17 12:23:42 +0100 |
| commit | c47688a9e8e049165a76b9bb3281c0381fa2d12f (patch) | |
| tree | c1f68a979bfac603a3beccea678d4b8cfe3391dc /miasm2/arch/mips32/disasm.py | |
| parent | 13a3fcbb168589703d56d6c36312d788f68786e3 (diff) | |
| parent | 0fcd954e10351f914b37a96d498aec39feb30b24 (diff) | |
| download | miasm-c47688a9e8e049165a76b9bb3281c0381fa2d12f.tar.gz miasm-c47688a9e8e049165a76b9bb3281c0381fa2d12f.zip | |
Merge pull request #71 from commial/pylinting
Pylinting
Diffstat (limited to 'miasm2/arch/mips32/disasm.py')
| -rw-r--r-- | miasm2/arch/mips32/disasm.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/miasm2/arch/mips32/disasm.py b/miasm2/arch/mips32/disasm.py index 4d6d2283..e5a70349 100644 --- a/miasm2/arch/mips32/disasm.py +++ b/miasm2/arch/mips32/disasm.py @@ -1,5 +1,5 @@ -from miasm2.core.asmbloc import asm_constraint, disasmEngine -from arch import mn_mips32 +from miasm2.core.asmbloc import disasmEngine +from miasm2.arch.mips32.arch import mn_mips32 @@ -14,4 +14,3 @@ class dis_mips32l(disasmEngine): def __init__(self, bs=None, **kwargs): super(dis_mips32l, self).__init__(mn_mips32, self.attrib, bs, **kwargs) - |