diff options
| author | Camille Mougey <camille.mougey@cea.fr> | 2015-02-16 16:17:31 +0100 |
|---|---|---|
| committer | Camille Mougey <camille.mougey@cea.fr> | 2015-02-16 16:17:31 +0100 |
| commit | 0ab6ee197347a7b1d568a4fa6abdf3034d4d8a22 (patch) | |
| tree | f3d24de0ab280cd42b91787b276a704e864df7be /miasm2/arch/x86/ira.py | |
| parent | d180b0e59f0b41fdbd1d4b276c267e0eda7bd058 (diff) | |
| download | miasm-0ab6ee197347a7b1d568a4fa6abdf3034d4d8a22.tar.gz miasm-0ab6ee197347a7b1d568a4fa6abdf3034d4d8a22.zip | |
PyLint: Wild-unused-import (expression.expression) in x86 part
Diffstat (limited to '')
| -rw-r--r-- | miasm2/arch/x86/ira.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/arch/x86/ira.py b/miasm2/arch/x86/ira.py index edd4a52a..5bc4761f 100644 --- a/miasm2/arch/x86/ira.py +++ b/miasm2/arch/x86/ira.py @@ -1,7 +1,7 @@ #!/usr/bin/env python #-*- coding:utf-8 -*- -from miasm2.expression.expression import * +from miasm2.expression.expression import ExprAff, ExprOp, ExprId from miasm2.core.graph import DiGraph from miasm2.ir.ir import ir, irbloc from miasm2.ir.analysis import ira |