Skip to content

Commit

Permalink
- Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
FieryIceStickie committed Mar 2, 2024
1 parent 397d7c6 commit 10aa579
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/vipyr_deobf/deobfuscators/hyperion.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class _theory:
from ast import *
from typing import TextIO

from vipyr_deobf.utils import WEBHOOK_REGEX
from ..utils import WEBHOOK_REGEX


class HyperionB64zlibBytes(ast.NodeTransformer):
Expand Down
2 changes: 1 addition & 1 deletion src/vipyr_deobf/deobfuscators/lzmaspam.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import re
from typing import TextIO

from vipyr_deobf.utils import WEBHOOK_REGEX
from ..utils import WEBHOOK_REGEX


def deobf_lzma_b64(file: TextIO) -> re.Match:
Expand Down
4 changes: 2 additions & 2 deletions src/vipyr_deobf/deobfuscators/not_pyobfuscate.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
from io import StringIO
from typing import TextIO

from vipyr_deobf.exceptions import DeobfuscationFailError
from vipyr_deobf.utils import BYTES_WEBHOOK_REGEX
from ..exceptions import DeobfuscationFailError
from ..utils import BYTES_WEBHOOK_REGEX


class ByteStringFinder(ast.NodeVisitor):
Expand Down
2 changes: 1 addition & 1 deletion src/vipyr_deobf/deobfuscators/vore.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

from cryptography.fernet import Fernet

from vipyr_deobf.utils import WEBHOOK_REGEX
from ..utils import WEBHOOK_REGEX


def deobf_vore(file: TextIO) -> str:
Expand Down

0 comments on commit 10aa579

Please sign in to comment.