Skip to content

Commit

Permalink
Update _glob.py
Browse files Browse the repository at this point in the history
fix typo
  • Loading branch information
ddkohler committed Feb 2, 2024
1 parent 59984c6 commit ce1a822
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions WrightTools/kit/_glob.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
from .._open import open


__all__ = ["describe_wt5", "find_wt5s"]
__all__ = ["describe_wt5", "glob_wt5s"]


def describe_wt5(path: Union[str, os.PathLike]):
def describe_wt5(path: Union[str, os.PathLike])->dict:
"""report useful general information about a wt5 file"""
wt5 = open(path)
desc = dict()
Expand Down

0 comments on commit ce1a822

Please sign in to comment.