style: remove unused exception variable in FileWatcher

This commit is contained in:
Paul Gauthier (aider) 2024-12-01 08:23:51 -08:00
parent 9b0388d00a
commit dcc0841443

View file

@ -109,7 +109,7 @@ class FileWatcher:
content = f.read()
match = self.ai_comment_pattern.search(content)
return bool(match)
except Exception as err:
except Exception:
return
def start(self):