mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-30 09:14:59 +00:00
style: use double quotes for string literals in run_cmd.py
This commit is contained in:
parent
f1d1d1b37a
commit
cc94b51a0b
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ def get_windows_parent_process_name():
|
|||
if parent is None:
|
||||
break
|
||||
parent_name = parent.name().lower()
|
||||
if parent_name in ['powershell.exe', 'cmd.exe']:
|
||||
if parent_name in ["powershell.exe", "cmd.exe"]:
|
||||
return parent_name
|
||||
current_process = parent
|
||||
return None
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue