Skip to content

Commit

Permalink
[DATALAD RUNCMD] Do interactive fixing of some ambigous typos
Browse files Browse the repository at this point in the history
=== Do not change lines below ===
{
 "chain": [],
 "cmd": "codespell -w -i 3 -C 2",
 "exit": 0,
 "extra_inputs": [],
 "inputs": [],
 "outputs": [],
 "pwd": "."
}
^^^ Do not change lines above ^^^
  • Loading branch information
yarikoptic committed Nov 28, 2023
1 parent 07f6aa5 commit 903e1e2
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/guides/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ optional arguments:
naming convention
<slp path>.<video index>_<video filename>.analysis.h5 will be
used for every video without a specified output path. Multiple
outputs can be specified, each preceeded by --output.
outputs can be specified, each preceded by --output.
Example (analysis format):
Input:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
"### Create and export the training job package\n",
"A self-contained **training job package** contains a .slp file with labeled data and images which will be used for training, as well as .json training configuration file(s).\n",
"\n",
"A training job package can be exported in the SLEAP GUI fron the \"Run Training..\" dialog under the \"Predict\" menu."
"A training job package can be exported in the SLEAP GUI from the \"Run Training..\" dialog under the \"Predict\" menu."
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion sleap/gui/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -1240,7 +1240,7 @@ def ask_for_filename(default_name: str, csv: bool) -> str:
analysis_videos.append(video)
output_paths.append(filename)

# Chack that output paths are valid
# Check that output paths are valid
if len(output_paths) == 0:
return False

Expand Down
2 changes: 1 addition & 1 deletion sleap/io/convert.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def create_parser():
"path per video in the project. Otherwise, the default naming convention "
"`<slp path>.<video index>_<video filename>.analysis.h5` will be used for "
"every video without a specified output path. Multiple outputs can be "
"specified, each preceeded by --output.",
"specified, each preceded by --output.",
)
parser.add_argument(
"--format",
Expand Down
2 changes: 1 addition & 1 deletion sleap/io/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -2095,7 +2095,7 @@ def export_nwb(
Args:
filename: Output path for the NWB format file.
labels: The `Labels` object to covert to a NWB format file.
labels: The `Labels` object to convert to a NWB format file.
overwrite: Boolean that overwrites existing NWB file if True. If False, data
will be appended to existing NWB file.
session_description: Description for entire project. Stored under
Expand Down
2 changes: 1 addition & 1 deletion sleap/io/format/ndx_pose.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ def write(
Args:
filename: Output path for the NWB format file.
labels: The `Labels` object to covert to a NWB format file.
labels: The `Labels` object to convert to a NWB format file.
overwrite: Boolean that overwrites existing NWB file if True. If False, data
will be appended to existing NWB file.
session_description: Description for entire project. Stored under
Expand Down

0 comments on commit 903e1e2

Please sign in to comment.