Skip to content

Commit 58393d7

Browse files
committed
Removed quotes on type annotations
1 parent f711276 commit 58393d7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

jsweb/response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ def __init__(self, body="403 Forbidden"):
316316
super().__init__(body, status_code=403, content_type="text/html")
317317

318318

319-
def render(req, template_name: str, context: dict = None) -> "HTMLResponse":
319+
def render(req, template_name: str, context: dict = None) -> HTMLResponse:
320320
"""
321321
Renders a Jinja2 template into an HTMLResponse.
322322

0 commit comments

Comments
 (0)