forked from orbit-oss/flask
drop support for python 3.7
This commit is contained in:
parent
9659b11a45
commit
2e8fe7b2f2
14 changed files with 19 additions and 40 deletions
|
|
@ -3,8 +3,6 @@ from __future__ import annotations
|
|||
import typing as t
|
||||
from http import HTTPStatus
|
||||
|
||||
import typing_extensions as te
|
||||
|
||||
from flask import Flask
|
||||
from flask import jsonify
|
||||
from flask import stream_template
|
||||
|
|
@ -40,7 +38,7 @@ def hello_json_list() -> t.List[t.Any]:
|
|||
return [{"message": "Hello"}, {"message": "World"}]
|
||||
|
||||
|
||||
class StatusJSON(te.TypedDict):
|
||||
class StatusJSON(t.TypedDict):
|
||||
status: str
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue