Skip to content

Commit

Permalink
style: format code with Black and isort
Browse files Browse the repository at this point in the history
This commit fixes the style issues introduced in b3d7ada according to the output
from Black and isort.

Details: #31
  • Loading branch information
deepsource-autofix[bot] authored Jan 17, 2024
1 parent b3d7ada commit 1a7fd89
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
from githubapp import webhook_handler
from githubapp.events import (
CheckSuiteRequestedEvent,
IssueOpenedEvent,
IssueEditedEvent,
IssueOpenedEvent,
)

from src.managers.issue import handle_tasklist
Expand Down
4 changes: 2 additions & 2 deletions tests/managers/test_issue.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
from unittest.mock import Mock, patch

import pytest

from src.managers.issue import handle_tasklist

from unittest.mock import patch, Mock


@pytest.fixture(autouse=True)
def get_repository(repo_batata):
Expand Down
2 changes: 1 addition & 1 deletion tests/test_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import markdown
import pytest

from app import app, handle_check_suite_requested, sentry_init, handle_issue
from app import app, handle_check_suite_requested, handle_issue, sentry_init


def test_sentry_init(monkeypatch):
Expand Down

0 comments on commit 1a7fd89

Please sign in to comment.