Skip to content

Commit

Permalink
Fix tab/spaces mixing in engines/__init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ltfish committed Nov 8, 2020
1 parent 3bbe1bb commit d85c89a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions angr/engines/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ class UberEngine(SimEngineFailure, SimEngineSyscall, HooksMixin, SimEngineUnicor
pass

try:
from .pcode import HeavyPcodeMixin
class UberEnginePcode(SimEngineFailure, SimEngineSyscall, HooksMixin, HeavyPcodeMixin): # pylint:disable=abstract-method
pass
from .pcode import HeavyPcodeMixin
class UberEnginePcode(SimEngineFailure, SimEngineSyscall, HooksMixin, HeavyPcodeMixin): # pylint:disable=abstract-method
pass
except ImportError:
pass
pass

0 comments on commit d85c89a

Please sign in to comment.