Skip to content

Commit 63fd561

Browse files
committed
style(task_comments): flake8 E301/W292/W391 in package and tests
1 parent cd4e0af commit 63fd561

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

crowdin_api/api_resources/task_comments/tests/test_task_comments_resources.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ def test_get_task_comment(self, m_request, base_absolut_url):
7676
path=resource.get_task_comments_path(projectId=1, taskId=2, taskCommentId=3),
7777
)
7878

79+
7980
@mock.patch("crowdin_api.requester.APIRequester.request")
8081
def test_delete_task_comment(self, m_request, base_absolut_url):
8182
m_request.return_value = "response"
@@ -87,6 +88,7 @@ def test_delete_task_comment(self, m_request, base_absolut_url):
8788
path=resource.get_task_comments_path(projectId=1, taskId=2, taskCommentId=3),
8889
)
8990

91+
9092
@mock.patch("crowdin_api.requester.APIRequester.request")
9193
def test_edit_task_comment(self, m_request, base_absolut_url):
9294
m_request.return_value = "response"

0 commit comments

Comments
 (0)