Skip to content

Commit

Permalink
isort
Browse files Browse the repository at this point in the history
  • Loading branch information
fnhartmann committed Feb 22, 2024
1 parent e05ce68 commit adb451d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion decompiler/pipeline/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
from decompiler.pipeline.preprocessing import (
Coherence,
CompilerIdiomHandling,
GetFunctionPointer,
InsertMissingDefinitions,
MemPhiConverter,
PhiFunctionFixer,
RegisterPairHandling,
RemoveStackCanary,
SwitchVariableDetection,
GetFunctionPointer,
)
from decompiler.pipeline.ssa.outofssatranslation import OutOfSsaTranslation
from decompiler.task import DecompilerTask
Expand Down
2 changes: 1 addition & 1 deletion decompiler/pipeline/preprocessing/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

from .coherence import Coherence
from .compiler_idiom_handling import CompilerIdiomHandling
from .get_function_pointer import GetFunctionPointer
from .mem_phi_conversion import MemPhiConverter
from .missing_definitions import InsertMissingDefinitions
from .phi_predecessors import PhiFunctionFixer
from .register_pair_handling import RegisterPairHandling
from .remove_stack_canary import RemoveStackCanary
from .switch_variable_detection import BackwardSliceSwitchVariableDetection as SwitchVariableDetection
from .get_function_pointer import GetFunctionPointer

0 comments on commit adb451d

Please sign in to comment.