From b79052501d4eb1be99987e0b194ebbaf8a3dfb7b Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Sun, 11 May 2025 08:13:27 -0700 Subject: [PATCH] style: Shorten comment to fix E501 --- tests/basic/test_main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/basic/test_main.py b/tests/basic/test_main.py index c2589bc20..4458c16e4 100644 --- a/tests/basic/test_main.py +++ b/tests/basic/test_main.py @@ -960,7 +960,7 @@ class TestMain(TestCase): # main() should return 1 when argparse itself fails due to an invalid choice # (argparse exits with 2, which main converts to 1) self.assertEqual(result, 1) - # offer_url is not called because argparse handles the error before aider's custom check + # offer_url not called: argparse handles error before aider's custom check mock_offer_url.assert_not_called() def test_default_model_selection(self):