From 564a1ecc14778c57cd855e84500c12442084a606 Mon Sep 17 00:00:00 2001 From: svlandeg Date: Wed, 26 Nov 2025 15:48:25 +0100 Subject: [PATCH] update emoji --- docs_src/commands/help/tutorial006.py | 6 +++--- docs_src/commands/help/tutorial007.py | 2 +- docs_src/commands/help/tutorial007_an.py | 2 +- .../test_commands/test_help/test_tutorial006.py | 6 +++--- .../test_commands/test_help/test_tutorial007.py | 2 +- .../test_commands/test_help/test_tutorial007_an.py | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/docs_src/commands/help/tutorial006.py b/docs_src/commands/help/tutorial006.py index b10ad75ad1..ca959998b0 100644 --- a/docs_src/commands/help/tutorial006.py +++ b/docs_src/commands/help/tutorial006.py @@ -14,7 +14,7 @@ def create(username: str): @app.command() def delete(username: str): """ - [red]Delete[/red] a user. :fire: + [red]Delete[/red] a user. :x: """ print(f"Deleting user: {username}") @@ -22,7 +22,7 @@ def delete(username: str): @app.command(rich_help_panel="Utils and Configs") def config(configuration: str): """ - [blue]Configure[/blue] the system. :wrench: + [blue]Configure[/blue] the system. :gear: """ print(f"Configuring the system with: {configuration}") @@ -46,7 +46,7 @@ def help(): @app.command(rich_help_panel="Help and Others") def report(): """ - [yellow]Report[/yellow] an issue. :bug: + [yellow]Report[/yellow] an issue. :exclamation: """ print("Please open a new issue online, not a direct message") diff --git a/docs_src/commands/help/tutorial007.py b/docs_src/commands/help/tutorial007.py index 6d59ed6ab3..a6e2fe1d33 100644 --- a/docs_src/commands/help/tutorial007.py +++ b/docs_src/commands/help/tutorial007.py @@ -30,7 +30,7 @@ def create( @app.command(rich_help_panel="Utils and Configs") def config(configuration: str): """ - [blue]Configure[/blue] the system. :wrench: + [blue]Configure[/blue] the system. :gear: """ print(f"Configuring the system with: {configuration}") diff --git a/docs_src/commands/help/tutorial007_an.py b/docs_src/commands/help/tutorial007_an.py index cd1dcc39f6..347190c63e 100644 --- a/docs_src/commands/help/tutorial007_an.py +++ b/docs_src/commands/help/tutorial007_an.py @@ -37,7 +37,7 @@ def create( @app.command(rich_help_panel="Utils and Configs") def config(configuration: str): """ - [blue]Configure[/blue] the system. :wrench: + [blue]Configure[/blue] the system. :gear: """ print(f"Configuring the system with: {configuration}") diff --git a/tests/test_tutorial/test_commands/test_help/test_tutorial006.py b/tests/test_tutorial/test_commands/test_help/test_tutorial006.py index d645164b57..93d6cafa9b 100644 --- a/tests/test_tutorial/test_commands/test_help/test_tutorial006.py +++ b/tests/test_tutorial/test_commands/test_help/test_tutorial006.py @@ -17,14 +17,14 @@ def test_main_help(): assert "create" in result.output assert "Create a new user. ✨" in result.output assert "delete" in result.output - assert "Delete a user. 🔥" in result.output + assert "Delete a user. ❌" in result.output assert "Utils and Configs" in result.output assert "config" in result.output - assert "Configure the system. 🔧" in result.output + assert "Configure the system. ⚙" in result.output assert "Synchronize the system or something fancy like that. ♻" in result.output assert "Help and Others" in result.output assert "Get help with the system. ❓" in result.output - assert "Report an issue. 🐛" in result.output + assert "Report an issue. ❗" in result.output def test_call(): diff --git a/tests/test_tutorial/test_commands/test_help/test_tutorial007.py b/tests/test_tutorial/test_commands/test_help/test_tutorial007.py index f262c251f5..13225822a2 100644 --- a/tests/test_tutorial/test_commands/test_help/test_tutorial007.py +++ b/tests/test_tutorial/test_commands/test_help/test_tutorial007.py @@ -18,7 +18,7 @@ def test_main_help(): assert "Create a new user. ✨" in result.output assert "Utils and Configs" in result.output assert "config" in result.output - assert "Configure the system. 🔧" in result.output + assert "Configure the system. ⚙" in result.output def test_create_help(): diff --git a/tests/test_tutorial/test_commands/test_help/test_tutorial007_an.py b/tests/test_tutorial/test_commands/test_help/test_tutorial007_an.py index 1a8c3d60a7..3df54b0cfa 100644 --- a/tests/test_tutorial/test_commands/test_help/test_tutorial007_an.py +++ b/tests/test_tutorial/test_commands/test_help/test_tutorial007_an.py @@ -18,7 +18,7 @@ def test_main_help(): assert "Create a new user. ✨" in result.output assert "Utils and Configs" in result.output assert "config" in result.output - assert "Configure the system. 🔧" in result.output + assert "Configure the system. ⚙" in result.output def test_create_help():