mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-09-02 17:45:31 +00:00
fix: Code standards (#1393)
This commit is contained in:
@@ -189,7 +189,7 @@ def get_cpu_info():
|
||||
match = re.search(r".*Model name:\s*(.+)", output)
|
||||
if match:
|
||||
cpu_info = match.group(1).strip()
|
||||
match = re.search(f".*型号名称:\s*(.+)", output)
|
||||
match = re.search(r".*型号名称:\s*(.+)", output)
|
||||
if match:
|
||||
cpu_info = match.group(1).strip()
|
||||
except:
|
||||
|
Reference in New Issue
Block a user