Skip to content

Commit

Permalink
fix: fix linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
harshanarayana committed May 27, 2019
1 parent ee03496 commit 6df06d7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sanic/blueprints.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

from sanic.blueprint_group import BlueprintGroup
from sanic.constants import HTTP_METHODS
from sanic.views import CompositionView
from sanic.util import find_applicable_strict_slashes_behavior
from sanic.views import CompositionView


FutureRoute = namedtuple(
Expand Down
2 changes: 1 addition & 1 deletion sanic/util.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from typing import Dict, AnyStr
from typing import AnyStr, Dict


def find_applicable_strict_slashes_behavior(slash_options: Dict[AnyStr, bool]):
Expand Down
1 change: 1 addition & 0 deletions tests/test_blueprints.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import asyncio
import inspect
import os

from http import HTTPStatus

import pytest
Expand Down

0 comments on commit 6df06d7

Please sign in to comment.