Skip to content

Commit

Permalink
new docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianPugh committed Nov 27, 2022
1 parent fbbf086 commit cd7e6a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion belay/cli/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def install(
None, help="Sync script to /main.py after installing."
),
):
"""Sync dependencies and project itself."""
"""Sync dependencies and project itself to device."""
if run and run.suffix != ".py":
raise ValueError("Run script MUST be a python file.")
if main and main.suffix != ".py":
Expand Down
1 change: 1 addition & 0 deletions belay/cli/new.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@


def new(project_name: str = Argument(..., help="Project Name.")):
"""Create a new micropython project structure."""
package_name = canonicalize_name(project_name)
dst_dir = Path() / project_name
template_dir = pkg_resources.files("belay") / "cli" / "new_template"
Expand Down

0 comments on commit cd7e6a7

Please sign in to comment.