mirror of
https://github.com/frida/frida-python
synced 2026-06-08 14:16:17 +00:00
Fix ordering of imports
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
|
||||
from frida.core import ModuleFunction
|
||||
|
||||
|
||||
class Discoverer(object):
|
||||
def __init__(self, reactor):
|
||||
self._reactor = reactor
|
||||
@@ -148,13 +149,15 @@ class UI(object):
|
||||
|
||||
|
||||
def main():
|
||||
import colorama
|
||||
from colorama import Fore, Back, Style
|
||||
import frida
|
||||
from frida.core import Reactor
|
||||
from optparse import OptionParser
|
||||
import sys
|
||||
|
||||
import colorama
|
||||
from colorama import Fore, Back, Style
|
||||
|
||||
import frida
|
||||
from frida.core import Reactor
|
||||
|
||||
colorama.init(autoreset=True)
|
||||
|
||||
usage = "usage: %prog [options] process-name-or-id"
|
||||
|
||||
+8
-5
@@ -1,11 +1,12 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from frida.core import ModuleFunction
|
||||
import os
|
||||
import fnmatch
|
||||
import sys
|
||||
import time
|
||||
|
||||
from frida.core import ModuleFunction
|
||||
|
||||
|
||||
class TracerProfileBuilder(object):
|
||||
def __init__(self):
|
||||
@@ -412,13 +413,15 @@ class UI(object):
|
||||
|
||||
|
||||
def main():
|
||||
import colorama
|
||||
from colorama import Fore, Back, Style
|
||||
import frida
|
||||
from frida.core import Reactor
|
||||
from optparse import OptionParser
|
||||
import sys
|
||||
|
||||
import colorama
|
||||
from colorama import Fore, Back, Style
|
||||
|
||||
import frida
|
||||
from frida.core import Reactor
|
||||
|
||||
colorama.init(autoreset=True)
|
||||
|
||||
tp = TracerProfileBuilder()
|
||||
|
||||
Reference in New Issue
Block a user