File tree Expand file tree Collapse file tree 1 file changed +11
-8
lines changed Expand file tree Collapse file tree 1 file changed +11
-8
lines changed Original file line number Diff line number Diff line change 11from __future__ import annotations
22
33import asyncio
4+
45import logging
56import os
7+ from pathlib import Path
68import signal
79import sys
8- from importlib .metadata import version
9- from pathlib import Path
10+
1011from typing import Any
1112
1213import aiohttp_jinja2
13- import jinja2
14- from aiohttp import WSMsgType , web
14+ from aiohttp import web
15+ from aiohttp import WSMsgType
1516from aiohttp .web_runner import GracefulExit
17+ import jinja2
18+
19+ from importlib .metadata import version
20+
1621from rich import print
1722from rich .console import Console
18- from rich .highlighter import RegexHighlighter
1923from rich .logging import RichHandler
24+ from rich .highlighter import RegexHighlighter
2025
2126from .app_service import AppService
2227
2530LOGO = r"""[bold magenta]___ ____ _ _ ___ _ _ ____ _ ____ ____ ____ _ _ ____
2631 | |___ \/ | | | |__| | __ [__ |___ |__/ | | |___
2732 | |___ _/\_ | |__| | | |___ ___] |___ | \ \/ |___ [not bold]VVVVV
28- """ .replace (
29- "VVVVV" , f"v{ version ('textual-serve' )} "
30- )
33+ """ .replace ("VVVVV" , f"v{ version ('textual-serve' )} " )
3134
3235
3336WINDOWS = sys .platform == "WINDOWS"
You can’t perform that action at this time.
0 commit comments