Skip to content

Commit 18da327

Browse files
authored
Merge pull request #3 from passlickdev/dev
fix: highlighted tty output
2 parents 6a9314c + 51fbbc3 commit 18da327

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "scanner-cli"
7-
version = "1.0.1"
7+
version = "1.0.2"
88
description = "CLI tool to read barcodes via stdin and route them to REST endpoints based on configurable modes."
99
readme = "README.md"
1010
authors = [{ name = "Passlick Development", email = "hello@passlickdev.com" }]

scanner_cli/main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,9 +163,9 @@ def list_modes(modes: Dict[str, Mode]):
163163
def main(argv=None):
164164
args = parse_args(argv)
165165
console.print(
166-
f"*** SCANNER CLI v{__version__} ***", style="yellow3", markup=False)
166+
f"*** SCANNER CLI v{__version__} ***", style="yellow3", markup=False, highlight=False)
167167
console.print(
168-
"(c) Passlick Development 2025. All rights reserved.\n", style="white")
168+
"(c) Passlick Development 2025. All rights reserved.\n", style="white", highlight=False)
169169
modes_dir = Path(args.modes_dir)
170170
if not modes_dir.exists():
171171
console.print(f"[red]Modes directory {modes_dir} does not exist[/red]")

0 commit comments

Comments
 (0)