Skip to content

Commit

Permalink
correct import oversight
Browse files Browse the repository at this point in the history
  • Loading branch information
gbarter committed Aug 28, 2023
1 parent ff86682 commit 8ac4763
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions pCrunch/io/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 8ac4763

Please sign in to comment.