mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-19 21:03:48 -07:00
Remove force lowercasing of commands.json
This commit is contained in:
parent
78e99d3e36
commit
b2e701d3fd
3 changed files with 3368 additions and 3366 deletions
|
@ -165,7 +165,7 @@ def get_version():
|
|||
def remove_ansi_escape_codes(text):
|
||||
"""Remove ANSI escape sequences that may be left in the text."""
|
||||
re_ansi_escape = re.compile(r'(\x9B|\x1B\[)[0-?]*[ -/]*[@-~]')
|
||||
return re_ansi_escape.sub('', str(text)).lower()
|
||||
return re_ansi_escape.sub('', str(text))
|
||||
|
||||
|
||||
def remove_extra_whitespace(text):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue