We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31c7fb5 commit 2181666Copy full SHA for 2181666
appwrite_lab/cli/list_menu.py
@@ -3,7 +3,14 @@
3
from appwrite_lab._orchestrator import get_template_versions
4
import typer
5
6
-list_menu = typer.Typer(name="list", rich_markup_mode=typer.rich_utils.MARKUP_MODE_RICH)
+try:
7
+ from typer.rich_utils import MARKUP_MODE_RICH
8
+
9
+ RICH_MODE = MARKUP_MODE_RICH
10
+except Exception:
11
+ RICH_MODE = "rich"
12
13
+list_menu = typer.Typer(name="list", rich_markup_mode=RICH_MODE)
14
15
labs = get_global_labs()
16
pyproject.toml
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "appwrite-lab"
-version = "0.1.4"
+version = "0.1.5"
description = "Zero-click Appwrite test environments."
readme = "README.md"
requires-python = ">=3.11"
0 commit comments