From 4eb2d725d5fe6f2cc7935c7dc891912cf7b8e940 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Mon, 21 Mar 2022 13:09:50 -0700 Subject: [PATCH] formatting --- jc/parsers/asciitable_m.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jc/parsers/asciitable_m.py b/jc/parsers/asciitable_m.py index 5af62101..053c91a5 100644 --- a/jc/parsers/asciitable_m.py +++ b/jc/parsers/asciitable_m.py @@ -77,7 +77,7 @@ def _process(proc_data: List[Dict]) -> List[Dict]: def _remove_ansi(string: str) -> str: - ansi_escape =re.compile(r'(\x9B|\x1B\[)[0-?]*[ -\/]*[@-~]') + ansi_escape = re.compile(r'(\x9B|\x1B\[)[0-?]*[ -\/]*[@-~]') return ansi_escape.sub('', string)