file mode for high level funtion not useful
This commit is contained in:
parent
6f008c5d5f
commit
f83a167414
|
@ -17,7 +17,7 @@ class DADF5():
|
||||||
# ------------------------------------------------------------------
|
# ------------------------------------------------------------------
|
||||||
def __init__(self,
|
def __init__(self,
|
||||||
filename,
|
filename,
|
||||||
mode = 'r',
|
mode = 'a',
|
||||||
):
|
):
|
||||||
"""
|
"""
|
||||||
Opens an existing DADF5 file.
|
Opens an existing DADF5 file.
|
||||||
|
@ -26,15 +26,8 @@ class DADF5():
|
||||||
----------
|
----------
|
||||||
filename : str
|
filename : str
|
||||||
name of the DADF5 file to be openend.
|
name of the DADF5 file to be openend.
|
||||||
mode : str, optional
|
|
||||||
filemode for opening, either 'r' or 'a'.
|
|
||||||
|
|
||||||
"""
|
"""
|
||||||
if mode not in ['a','r']:
|
|
||||||
print('Invalid file access mode')
|
|
||||||
else:
|
|
||||||
with h5py.File(filename,mode):
|
|
||||||
pass
|
|
||||||
|
|
||||||
with h5py.File(filename,'r') as f:
|
with h5py.File(filename,'r') as f:
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue