From 1c46aa2d5242fcdcc8ebba20a53cfd473f4ee7bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Wed, 13 Apr 2022 17:31:23 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Add=20types=20and=20format=20for?= =?UTF-8?q?=20linting?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- fastapi/routing.py | 2 ++ tests/test_custom_route_class.py | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/fastapi/routing.py b/fastapi/routing.py index 8f27656d8..b2a8b0188 100644 --- a/fastapi/routing.py +++ b/fastapi/routing.py @@ -311,6 +311,8 @@ class APIWebSocketRoute(routing.WebSocketRoute): class APIRoute(routing.Route): + _route_full_path_format: str # only for mypy + def __init__( self, path: str, diff --git a/tests/test_custom_route_class.py b/tests/test_custom_route_class.py index 7d8b5f141..f03130aa7 100644 --- a/tests/test_custom_route_class.py +++ b/tests/test_custom_route_class.py @@ -2,7 +2,6 @@ import pytest from fastapi import APIRouter, FastAPI from fastapi.routing import APIRoute from fastapi.testclient import TestClient -from starlette.routing import Route app = FastAPI()