From 945eb04010079f6948d9a6ec307566c3bb20776e Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Thu, 29 Aug 2024 09:13:15 -0700 Subject: [PATCH] style: Add blank line before main function call --- aider/report.py | 1 + 1 file changed, 1 insertion(+) diff --git a/aider/report.py b/aider/report.py index 6025c36ca..8454e162f 100644 --- a/aider/report.py +++ b/aider/report.py @@ -91,5 +91,6 @@ def main(): report_github_issue(issue_text, title) + if __name__ == "__main__": main()