diff options
| author | Camille Mougey <commial@gmail.com> | 2018-08-29 16:27:06 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-08-29 16:27:06 +0200 |
| commit | 7c0d412120abbcfaa51fdb1dd231a27595c873ed (patch) | |
| tree | 43226fee7292a9a4912ea1d3d0d9728d2aefbcfd /miasm2/core/asmblock.py | |
| parent | 86e458d488b02bf3479f9c5a42bb56de23c3ea80 (diff) | |
| parent | 253547e35343aed844e7bcb033c610409fcbd21e (diff) | |
| download | miasm-7c0d412120abbcfaa51fdb1dd231a27595c873ed.tar.gz miasm-7c0d412120abbcfaa51fdb1dd231a27595c873ed.zip | |
Merge pull request #828 from serpilliere/fix_lgtm_1
Code cleaning: lgtm.com
Diffstat (limited to 'miasm2/core/asmblock.py')
| -rw-r--r-- | miasm2/core/asmblock.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/miasm2/core/asmblock.py b/miasm2/core/asmblock.py index c00b4c5c..2f336617 100644 --- a/miasm2/core/asmblock.py +++ b/miasm2/core/asmblock.py @@ -4,8 +4,7 @@ import logging import warnings from collections import namedtuple -from miasm2.expression.expression import ExprId, ExprInt, ExprLoc, \ - get_expr_locs +from miasm2.expression.expression import ExprId, ExprInt, get_expr_locs from miasm2.expression.expression import LocKey from miasm2.expression.simplifications import expr_simp from miasm2.expression.modint import moduint, modint |