Skip to content

Commit

Permalink
0.1.6
Browse files Browse the repository at this point in the history
Bug fix: Temporary removal of .npz from supported file types to prevent app crash
  • Loading branch information
diStyApps committed Dec 23, 2022
1 parent 806856a commit fc7880c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion picklescan/src/picklescan/scanner.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def merge(self, sr: "ScanResult"):

_pytorch_file_extensions = {".bin", ".pt", ".pth", ".ckpt"}
_pickle_file_extensions = {".pkl", ".pickle", ".joblib", ".dat", ".data", ".npy"}
_zip_file_extensions = {".zip", ".npz"}
_zip_file_extensions = {".zip"}

scanned_files = []
infected_files = []
Expand Down
2 changes: 1 addition & 1 deletion run_app_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from CONSTANTS import *

sg.theme('Dark Gray 15')
__version__ = '0.1.5'
__version__ = '0.1.6'
APP_TITLE = f"Disty's Stable Diffusion Pickle Scanner GUI - Ver {__version__}"
isError:int = 0

Expand Down

0 comments on commit fc7880c

Please sign in to comment.