Skip to content

Commit

Permalink
Updated to v0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
ozcanyarimdunya committed Nov 20, 2023
1 parent 3306dee commit 3248595
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
6 changes: 1 addition & 5 deletions argparge/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def commands(self):
return self._commands


class ParentCommand(Command):
class GroupCommand(Command):
parent = True

def __init__(self, *commands, name, **kwargs):
Expand All @@ -55,10 +55,6 @@ def add_arguments(self, parser: "Command"): ...
def handle(self, **arguments): ...


class GroupCommand(ParentCommand):
pass


class Application(argparse.ArgumentParser):
_mappings_key = "#><#"

Expand Down
8 changes: 4 additions & 4 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "argparge"
version = "0.1.4"
version = "0.1.5"
description = "A very simple tool to create beautiful console application by using native argparse."
authors = ["Özcan Yarımdünya <[email protected]>"]
license = "MIT"
Expand Down Expand Up @@ -32,6 +32,9 @@ python = "^3.9"
[tool.poetry.dev-dependencies]
mkdocs = "^1.5.2"

[tool.poetry.group.dev.dependencies]
mkdocs = "1.5.3"

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"

0 comments on commit 3248595

Please sign in to comment.