archive
/
actioner
Archived
1
Fork 0

Tweak isort configuration so it looks nicer

This commit is contained in:
Jake Howard 2019-02-16 21:18:40 +00:00
parent 37b63a83f2
commit eee45bf6e5
Signed by: jake
GPG Key ID: 57AFB45680EDD477
2 changed files with 12 additions and 5 deletions

View File

@ -2,7 +2,12 @@
extend_ignore=E128,E501
[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]
ignore_missing_imports = true

View File

@ -1,10 +1,12 @@
from collections import namedtuple
from actioner.clients import github, todoist
from actioner.scheduler.todoist_assigned_issues import (REPOS,
get_existing_task,
get_issue_link,
issue_to_task_name)
from actioner.scheduler.todoist_assigned_issues import (
REPOS,
get_existing_task,
get_issue_link,
issue_to_task_name,
)
from tests import BaseTestCase
FakeIssue = namedtuple('FakeIssue', ['number', 'html_url', 'title'])