Skip to content

Commit

Permalink
fix: git pull usptream main to use line length of 79
Browse files Browse the repository at this point in the history
  • Loading branch information
bobleesj committed Jan 5, 2025
1 parent 8042e8c commit 9849b7c
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions src/scikit_package/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ def create():


def update():
# FIXME: Implement the update command. As of now it does the same as the create command.
# FIXME: Implement the update command.
# As of now it does the same as the create command.
run_cookiecutter()


Expand All @@ -29,7 +30,9 @@ def setup_subparsers(parser):
parser_create = parser.add_parser("create", help="Create a new package")
parser_create.set_defaults(func=create)
# Create "update" subparser
parser_update = parser.add_parser("update", help="Update an existing package")
parser_update = parser.add_parser(
"update", help="Update an existing package"
)
parser_update.set_defaults(func=update)


Expand All @@ -42,7 +45,9 @@ def main():
>>> package update
"""

parser = ArgumentParser(description="Manage package operations with scikit-package.")
parser = ArgumentParser(
description="Manage package operations with scikit-package."
)
subparsers = parser.add_subparsers(dest="command", required=True)
setup_subparsers(subparsers)
args = parser.parse_args()
Expand Down

0 comments on commit 9849b7c

Please sign in to comment.