Skip to content

Commit a6fba75

Browse files
committed
🐛 fix: fix shellenv command
1 parent 7b4887e commit a6fba75

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

auto_token/__main__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import toml
88
import typer
99
from loguru import logger
10-
from rich import print
10+
import rich
1111
from rich.columns import Columns
1212
from rich.table import Table
1313

@@ -101,7 +101,7 @@ def list_token(config_path: Path = Path("~/.config/auto-token/config.toml"), log
101101
for token in config.tokens:
102102
envs = Columns(e.name for e in token.envs)
103103
table.add_row(token.name, str(token.active), envs, end_section=True)
104-
print(table)
104+
rich.print(table)
105105

106106

107107
@app.command("add")

0 commit comments

Comments
 (0)