Skip to content

Commit 480c35d

Browse files
authored
move read_t to binary.py namespace (#745)
1 parent 60de625 commit 480c35d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/pyclaw/fileio/binary.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
from ..util import read_data_line
1414
import numpy as np
1515
import clawpack.pyclaw as pyclaw
16+
from clawpack.pyclaw.fileio.ascii import read_t
1617

1718
logger = logging.getLogger('pyclaw.fileio')
1819

@@ -42,7 +43,7 @@ def read(solution,frame,path='./',file_prefix='fort',read_aux=False,
4243
- *options* - (dict) Dictionary of optional arguments dependent on
4344
the format being read in. ``default = {}``
4445
"""
45-
from clawpack.pyclaw.fileio.ascii import read_t
46+
4647

4748
# Construct path names
4849
base_path = os.path.join(path,)

0 commit comments

Comments
 (0)