diff options
author | AUTOMATIC <16777216c@gmail.com> | 2023-05-01 11:27:53 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2023-05-01 11:27:53 +0000 |
commit | fe8a10d428bcc6be9cc8efb9772eca9e40f98dc8 (patch) | |
tree | d1e0ff50e327c3c59230b39907284c20ffbf0fe3 /modules/safe.py | |
parent | 22bcc7be428c94e9408f589966c2040187245d81 (diff) | |
parent | 6fbd85dd0c0dffc06560bff91f4c4b65e441ca5f (diff) | |
download | stable-diffusion-webui-gfx803-fe8a10d428bcc6be9cc8efb9772eca9e40f98dc8.tar.gz stable-diffusion-webui-gfx803-fe8a10d428bcc6be9cc8efb9772eca9e40f98dc8.tar.bz2 stable-diffusion-webui-gfx803-fe8a10d428bcc6be9cc8efb9772eca9e40f98dc8.zip |
Merge branch 'release_candidate'
Diffstat (limited to 'modules/safe.py')
-rw-r--r-- | modules/safe.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/modules/safe.py b/modules/safe.py index 82d44be3..dadf319c 100644 --- a/modules/safe.py +++ b/modules/safe.py @@ -1,6 +1,5 @@ # this code is adapted from the script contributed by anon from /h/
-import io
import pickle
import collections
import sys
@@ -12,11 +11,9 @@ import _codecs import zipfile
import re
-
# PyTorch 1.13 and later have _TypedStorage renamed to TypedStorage
TypedStorage = torch.storage.TypedStorage if hasattr(torch.storage, 'TypedStorage') else torch.storage._TypedStorage
-
def encode(*args):
out = _codecs.encode(*args)
return out
@@ -27,7 +24,7 @@ class RestrictedUnpickler(pickle.Unpickler): def persistent_load(self, saved_id):
assert saved_id[0] == 'storage'
- return TypedStorage()
+ return TypedStorage(_internal=True)
def find_class(self, module, name):
if self.extra_handler is not None:
|