Skip to content

Commit

Permalink
Change: Use terminal based on rich
Browse files Browse the repository at this point in the history
The rich based terminal allows for nicer looking UI.
  • Loading branch information
bjoernricks committed Jul 19, 2023
1 parent b6252a3 commit af8cc48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mattermost_notify/git.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from pathlib import Path
from typing import Any, Optional

from pontos.terminal.terminal import ConsoleTerminal
from pontos.terminal import RichTerminal

from mattermost_notify.errors import MattermostNotifyError
from mattermost_notify.parser import parse_args
Expand Down Expand Up @@ -126,7 +126,7 @@ def fill_template(
def main() -> None:
parsed_args = parse_args()

term = ConsoleTerminal()
term = RichTerminal()

try:
if not parsed_args.free:
Expand Down

0 comments on commit af8cc48

Please sign in to comment.