mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-31 09:44:59 +00:00
style: Use double quotes for string literal in exception_handler
This commit is contained in:
parent
4a26bc6c70
commit
9d1df5308d
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ def exception_handler(exc_type, exc_value, exc_traceback):
|
|||
# Find the first non-frozen frame
|
||||
while exc_traceback:
|
||||
filename = exc_traceback.tb_frame.f_code.co_filename
|
||||
if not filename.startswith('<frozen '):
|
||||
if not filename.startswith("<frozen "):
|
||||
break
|
||||
exc_traceback = exc_traceback.tb_next
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue