We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dce9b3c commit 60081e6Copy full SHA for 60081e6
src/protect_code2.pt
@@ -17,7 +17,8 @@ def protect_pytransform():
17
raise RuntimeError('unexpected obfuscated script')
18
19
def check_lib_pytransform():
20
- if sys.platform == 'darwin':
+ from sys import platform
21
+ if platform == 'darwin':
22
return
23
{relative}import pytransform{suffix} as pytransform
24
filename = pytransform.__file__
0 commit comments