-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
3 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,13 +3,11 @@ | |
__maintainer__ = "Jake Nunemaker" | ||
__email__ = ["[email protected]"] | ||
|
||
# Need all these for import here in __init__ even if not used in code below | ||
from pCrunch.io.openfast import OpenFASTAscii, OpenFASTBinary, OpenFASTOutput | ||
|
||
import numpy as np | ||
|
||
from .openfast import OpenFASTAscii, OpenFASTBinary | ||
|
||
|
||
def load_FAST_out(filenames, tmin=0, tmax=np.inf, **kwargs): | ||
def load_FAST_out(filenames, tmin=0, tmax=float('inf'), **kwargs): | ||
""" | ||
Load a list of OpenFAST files. | ||
|