minor changes

This commit is contained in:
2022-08-30 10:07:50 +02:00
parent f47e111e65
commit d52a6cebba
6 changed files with 49 additions and 16 deletions

View File

@@ -49,7 +49,7 @@ Implemented messages
def OpenFile(self, fn_npz):
try:
self.fh=fh=np.load(fn_npz)
self.fh=fh=np.load(fn_npz,allow_pickle=True)
except IOError as e:
sys.stderr.write('Unable to open File: '+fn_npz+'\n')
else: