From adb6b0375ac4e0daac2636a3b7184339aee827cd Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Sat, 11 Nov 2023 23:41:33 +0000 Subject: [PATCH] style: format code with Black This commit fixes the style issues introduced in 9c906c6 according to the output from Black. Details: None --- tests/test_send.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/test_send.py b/tests/test_send.py index bb29e4e..51f2d44 100644 --- a/tests/test_send.py +++ b/tests/test_send.py @@ -1,9 +1,10 @@ # Get out of the test directory import os import sys + current_dir = os.path.dirname(os.path.abspath(__file__)) parent_dir = os.path.dirname(current_dir) -sys.path.append(os.path.join(parent_dir, 'send')) +sys.path.append(os.path.join(parent_dir, "send")) # Import send file to test import send @@ -12,6 +13,7 @@ from unittest.mock import MagicMock import pytest + def test_main(mocker): mock_input = mocker.patch( "builtins.input", side_effect=["sender@example.com", "receiver@example.com"]