Skip to content

Commit

Permalink
Drop log book border
Browse files Browse the repository at this point in the history
  • Loading branch information
d-j-hatton committed Sep 7, 2022
1 parent edae204 commit e8313a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/murfey/client/tui/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

import requests
from pydantic import BaseModel, ValidationError
from rich.box import SQUARE
from rich.box import MINIMAL, SQUARE
from rich.logging import RichHandler
from rich.panel import Panel
from textual import events
Expand Down Expand Up @@ -408,7 +408,7 @@ def render(self) -> Panel:
panel_msg = self._logs or ""
return Panel(
panel_msg,
box=SQUARE,
box=MINIMAL,
)

async def tick(self):
Expand Down

0 comments on commit e8313a8

Please sign in to comment.