mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2026-05-12 11:18:11 -07:00
Remove force lowercasing of commands.json
This commit is contained in:
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user