mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-02 02:34:59 +00:00
style: remove unused exception variable in FileWatcher
This commit is contained in:
parent
9b0388d00a
commit
dcc0841443
1 changed files with 1 additions and 1 deletions
|
@ -109,7 +109,7 @@ class FileWatcher:
|
||||||
content = f.read()
|
content = f.read()
|
||||||
match = self.ai_comment_pattern.search(content)
|
match = self.ai_comment_pattern.search(content)
|
||||||
return bool(match)
|
return bool(match)
|
||||||
except Exception as err:
|
except Exception:
|
||||||
return
|
return
|
||||||
|
|
||||||
def start(self):
|
def start(self):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue