You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed that the ZipFile will stay open (OS prevents it from being modified or removed) and it is currently not possible to use it in a with statement. So I'd suggest implementing __enter__ , __exit__ and a close() function.
At the moment you will have to call apk.zip.close() manually, to figure this out you need to look at the code.
The text was updated successfully, but these errors were encountered:
I noticed that the
ZipFile
will stay open (OS prevents it from being modified or removed) and it is currently not possible to use it in awith
statement. So I'd suggest implementing__enter__
,__exit__
and aclose()
function.At the moment you will have to call
apk.zip.close()
manually, to figure this out you need to look at the code.The text was updated successfully, but these errors were encountered: