From 64b88249f2afd2fbbcf48d38bd562ba7f3029df5 Mon Sep 17 00:00:00 2001 From: Ivan Habunek Date: Sat, 30 Mar 2024 10:11:44 +0100 Subject: [PATCH] Remove print_err, unused --- twitchdl/output.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/twitchdl/output.py b/twitchdl/output.py index 1619a05..961605e 100644 --- a/twitchdl/output.py +++ b/twitchdl/output.py @@ -64,12 +64,6 @@ def print_json(data: Any): click.echo(json.dumps(data)) -def print_err(*args, **kwargs): - args = [f"{arg}" for arg in args] - args = [colorize(a) if USE_ANSI_COLOR else strip_tags(a) for a in args] - print(*args, file=sys.stderr, **kwargs) - - def print_log(*args, **kwargs): args = [f"{a}" for a in args] args = [colorize(a) if USE_ANSI_COLOR else strip_tags(a) for a in args]