style: format code with black

This commit is contained in:
Paul Gauthier (aider) 2024-08-31 07:46:37 -07:00
parent 81981e7e99
commit 6a2dd41275

View file

@ -620,9 +620,9 @@ class TestMain(TestCase):
)
self.assertTrue(coder.suggest_shell_commands)
@patch('git.Repo.init')
@patch("git.Repo.init")
def test_main_exit_with_git_command_not_found(self, mock_git_init):
mock_git_init.side_effect = git.exc.GitCommandNotFound('git')
mock_git_init.side_effect = git.exc.GitCommandNotFound("git")
try:
result = main(["--exit"], input=DummyInput(), output=DummyOutput())