Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/specify_cli/_console.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"""
from __future__ import annotations

import logging
import sys
from collections.abc import Callable

Expand All @@ -21,6 +22,8 @@
from rich.tree import Tree
from typer.core import TyperGroup

logger = logging.getLogger(__name__)

BANNER = """
███████╗██████╗ ███████╗ ██████╗██╗███████╗██╗ ██╗
██╔════╝██╔══██╗██╔════╝██╔════╝██║██╔════╝╚██╗ ██╔╝
Expand Down Expand Up @@ -85,7 +88,7 @@ def _maybe_refresh(self):
try:
self._refresh_cb()
except Exception:
pass
logger.debug("Progress tracker refresh failed", exc_info=True)

def render(self):
tree = Tree(f"[cyan]{self.title}[/cyan]", guide_style="grey50")
Expand Down