Skip to content

Commit aeb5911

Browse files
committed
remove formatting
1 parent 3ff6906 commit aeb5911

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

src/textual_serve/server.py

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,27 @@
11
from __future__ import annotations
22

33
import asyncio
4+
45
import logging
56
import os
7+
from pathlib import Path
68
import signal
79
import sys
8-
from importlib.metadata import version
9-
from pathlib import Path
10+
1011
from typing import Any
1112

1213
import aiohttp_jinja2
13-
import jinja2
14-
from aiohttp import WSMsgType, web
14+
from aiohttp import web
15+
from aiohttp import WSMsgType
1516
from aiohttp.web_runner import GracefulExit
17+
import jinja2
18+
19+
from importlib.metadata import version
20+
1621
from rich import print
1722
from rich.console import Console
18-
from rich.highlighter import RegexHighlighter
1923
from rich.logging import RichHandler
24+
from rich.highlighter import RegexHighlighter
2025

2126
from .app_service import AppService
2227

@@ -25,9 +30,7 @@
2530
LOGO = 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

3336
WINDOWS = sys.platform == "WINDOWS"

0 commit comments

Comments
 (0)