Skip to content

Commit

Permalink
Add description to export and import in help menu
Browse files Browse the repository at this point in the history
  • Loading branch information
elkinaguas committed Oct 18, 2024
1 parent b37c6c6 commit f83d30a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions clir/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def tags(grep: str = ""):
table = CommandTable(grep=grep)
table.show_tags()

@cli.command(help="Import 🤓")
@cli.command(help="Import commands from file 🤓")
@click.option('-f', '--file', help="Search by grep")
def imports(file: str = ""):
init_config()
Expand All @@ -73,7 +73,7 @@ def imports(file: str = ""):
table = CommandTable()
table.import_commands(import_file_path = file)

@cli.command(help="Export 😮‍💨")
@cli.command(help="Export commands to file 📤")
@click.option('-t', '--tag', help="Search by tag")
@click.option('-g', '--grep', help="Search by grep")
def export(tag: str = "", grep: str = ""):
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "clir"
version = "0.8.0"
version = "0.8.1"
description = "A clear and fast way to store and recover your commands"
authors = ["Elkin Aguas <[email protected]>"]
license = "MIT License"
Expand All @@ -24,4 +24,4 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry.scripts]
clir = "clir.cli:cli"
init_clir = 'clir.cli:init'
init_clir = 'clir.cli:init'

0 comments on commit f83d30a

Please sign in to comment.