diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2018-08-21 08:27:40 +0200 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2018-08-23 09:35:27 +0200 |
| commit | 253547e35343aed844e7bcb033c610409fcbd21e (patch) | |
| tree | f57b90520b3c06edc8483979795d3de2e9a54d26 /miasm2/arch/mep/arch.py | |
| parent | 46bb6b39453ea8b5abb04dfd62492e429376a8ea (diff) | |
| download | miasm-253547e35343aed844e7bcb033c610409fcbd21e.tar.gz miasm-253547e35343aed844e7bcb033c610409fcbd21e.zip | |
Code cleaning: lgtm.com
Diffstat (limited to '')
| -rw-r--r-- | miasm2/arch/mep/arch.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/miasm2/arch/mep/arch.py b/miasm2/arch/mep/arch.py index a4c7182a..cf4fa96d 100644 --- a/miasm2/arch/mep/arch.py +++ b/miasm2/arch/mep/arch.py @@ -3,7 +3,8 @@ from miasm2.core.cpu import * from miasm2.core.utils import Disasm_Exception -from miasm2.expression.expression import * +from miasm2.expression.expression import Expr, ExprId, ExprInt, ExprLoc, \ + ExprMem, ExprOp from miasm2.core.asm_ast import AstId, AstMem from miasm2.arch.mep.regs import * |