Skip to content

Commit

Permalink
fix #61: some imports removed
Browse files Browse the repository at this point in the history
  • Loading branch information
joelpx committed Jan 27, 2016
1 parent 39ed8a6 commit e92821c
Show file tree
Hide file tree
Showing 8 changed files with 2 additions and 6 deletions.
1 change: 1 addition & 0 deletions reverse/lib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
import os
from argparse import ArgumentParser

import reverse
import reverse.lib.utils
import reverse.lib.colors
from reverse.lib.database import Database
Expand Down
1 change: 0 additions & 1 deletion reverse/lib/analyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
import threading
from queue import Queue

from reverse import lib
from reverse.lib.fileformat.binary import T_BIN_PE, T_BIN_ELF
from reverse.lib.memory import MEM_CODE, MEM_FUNC, MEM_UNK, MEM_ASCII

Expand Down
1 change: 0 additions & 1 deletion reverse/lib/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@

import json

from reverse import lib
from reverse.lib.disassembler import Jmptable
from reverse.lib.utils import info, warning
from reverse.lib.memory import Memory
Expand Down
1 change: 0 additions & 1 deletion reverse/lib/disassembler.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
import struct
from time import time

from reverse import lib
from reverse.lib.graph import Graph
from reverse.lib.utils import debug__, BYTES_PRINTABLE_SET, get_char, print_no_end
from reverse.lib.fileformat.binary import Binary, T_BIN_PE
Expand Down
1 change: 0 additions & 1 deletion reverse/lib/generate_ast.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
import sys
from time import time

from reverse import lib
from reverse.lib.ast import (Ast_Branch, Ast_Goto, Ast_Loop, Ast_If_cond,
Ast_IfGoto, Ast_Ifelse, Ast_AndIf, Ast_Comment)
from reverse.lib.utils import BRANCH_NEXT, BRANCH_NEXT_JUMP, debug__
Expand Down
1 change: 0 additions & 1 deletion reverse/lib/graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@

from time import time

from reverse import lib
from reverse.lib.utils import BRANCH_NEXT, BRANCH_NEXT_JUMP, debug__, list_starts_with

# For the loop's analysis
Expand Down
1 change: 0 additions & 1 deletion reverse/lib/output.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@

import struct

from reverse import lib
from reverse.lib.custom_colors import *
from reverse.lib.utils import print_no_end, get_char, BYTES_PRINTABLE_SET
from reverse.lib.colors import color, bold
Expand Down
1 change: 1 addition & 0 deletions reverse/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

import os
import sys
import reverse
from reverse.lib import GlobalContext, AddrContext
from reverse.lib.utils import info, die
from reverse.lib.ui.vim import generate_vim_syntax
Expand Down

0 comments on commit e92821c

Please sign in to comment.