Skip to content

Commit

Permalink
Make ddls --help descriptions consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
gustavla committed Sep 6, 2017
1 parent 8a5de2d commit 01af936
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions deepdish/io/ls.py
Original file line number Diff line number Diff line change
Expand Up @@ -667,19 +667,19 @@ def main():
parser.add_argument('-nc', '--no-color', action='store_true',
help='turn off bash colors')
parser.add_argument('-i', '--inspect', metavar='GRP',
help='prints a specific variable (e.g. /data)')
help='print a specific variable (e.g. /data)')
parser.add_argument('--ipython', action='store_true',
help=('loads file into an IPython session. '
help=('load file into an IPython session. '
'Works with -i'))
parser.add_argument('--raw', action='store_true',
help=('prints the raw HDF5 structure for complex '
help=('print the raw HDF5 structure for complex '
'data types, such as sparse matrices and pandas '
'data frames'))
parser.add_argument('-f', '--filter', type=str,
help=('Print only entries that match this regular '
help=('print only entries that match this regular '
'expression'))
parser.add_argument('-l', '--leaves-only', action='store_true',
help=('Only print leaves'))
help=('print only leaves'))
parser.add_argument('-a', '--all', action='store_true',
help=('do not abridge'))
parser.add_argument('-s', '--summarize', action='store_true',
Expand Down

0 comments on commit 01af936

Please sign in to comment.