Tweak isort configuration so it looks nicer
This commit is contained in:
parent
37b63a83f2
commit
eee45bf6e5
2 changed files with 12 additions and 5 deletions
|
@ -2,7 +2,12 @@
|
||||||
extend_ignore=E128,E501
|
extend_ignore=E128,E501
|
||||||
|
|
||||||
[isort]
|
[isort]
|
||||||
not_skip = __init__.py
|
multi_line_output=3
|
||||||
|
include_trailing_comma=True
|
||||||
|
force_grid_wrap=0
|
||||||
|
use_parentheses=True
|
||||||
|
line_length=88
|
||||||
|
not_skip=__init__.py
|
||||||
|
|
||||||
[mypy]
|
[mypy]
|
||||||
ignore_missing_imports = true
|
ignore_missing_imports = true
|
||||||
|
|
|
@ -1,10 +1,12 @@
|
||||||
from collections import namedtuple
|
from collections import namedtuple
|
||||||
|
|
||||||
from actioner.clients import github, todoist
|
from actioner.clients import github, todoist
|
||||||
from actioner.scheduler.todoist_assigned_issues import (REPOS,
|
from actioner.scheduler.todoist_assigned_issues import (
|
||||||
get_existing_task,
|
REPOS,
|
||||||
get_issue_link,
|
get_existing_task,
|
||||||
issue_to_task_name)
|
get_issue_link,
|
||||||
|
issue_to_task_name,
|
||||||
|
)
|
||||||
from tests import BaseTestCase
|
from tests import BaseTestCase
|
||||||
|
|
||||||
FakeIssue = namedtuple('FakeIssue', ['number', 'html_url', 'title'])
|
FakeIssue = namedtuple('FakeIssue', ['number', 'html_url', 'title'])
|
||||||
|
|
Reference in a new issue