Skip to content

Commit

Permalink
pass flake8 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
aryaniyaps committed Apr 16, 2023
1 parent d1b546c commit 396e6d6
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 9 deletions.
3 changes: 0 additions & 3 deletions falcon/inspect.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,8 @@
"""Inspect utilities for falcon applications."""
from functools import partial
import inspect
from typing import Callable
from typing import Dict
from typing import List
from typing import Optional
from typing import Type

from falcon import app_helpers
from falcon.app import App
Expand Down
4 changes: 0 additions & 4 deletions falcon/routing/compiled.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
import keyword
import re
from threading import Lock
from typing import TYPE_CHECKING

from falcon.routing import converters
from falcon.routing.util import map_http_methods
Expand All @@ -28,9 +27,6 @@
from falcon.util.sync import _should_wrap_non_coroutines
from falcon.util.sync import wrap_sync_to_async

if TYPE_CHECKING:
from typing import Any

_TAB_STR = ' ' * 4
_FIELD_PATTERN = re.compile(
# NOTE(kgriffs): This disallows the use of the '}' character within
Expand Down
2 changes: 0 additions & 2 deletions tests/test_validators.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import typing

try:
import jsonschema as _jsonschema # NOQA
except ImportError:
Expand Down

0 comments on commit 396e6d6

Please sign in to comment.