Skip to content
This repository was archived by the owner on Jul 27, 2024. It is now read-only.

Commit 45a8233

Browse files
error fixed
1 parent 0b1aaa2 commit 45a8233

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/obfuscapk/obfuscation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from typing import List, Union
88

99
from obfuscapk import util
10-
from obfuscapk.toolbundledecompiler import BundleDecompiler, JarsignerBundle
10+
from obfuscapk.toolbundledecompiler import BundleDecompiler, AABSigner
1111
from obfuscapk.tool import Apktool, ApkSigner, Zipalign
1212

1313

src/obfuscapk/toolbundledecompiler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def __init__(self):
2626
# Make sure bundle decompiler is available
2727
if not os.path.isfile(full_bundledecompiler_path):
2828
raise RuntimeError(
29-
'Cannot find BundleDecompiler with executable "{0}"'.format(self.full_bundledecompiler_path)
29+
'Cannot find BundleDecompiler with executable "{0}"'.format(full_bundledecompiler_path)
3030
)
3131

3232
# Make sure to use the full path of the executable (needed for cross-platform

0 commit comments

Comments
 (0)