.
This commit is contained in:
parent
d589f2d5f7
commit
a5f001b254
2 changed files with 2 additions and 2 deletions
|
|
@ -22,7 +22,7 @@ from .helpers import get_load_dotenv
|
||||||
try:
|
try:
|
||||||
import dotenv
|
import dotenv
|
||||||
except ImportError:
|
except ImportError:
|
||||||
dotenv = None
|
dotenv = None # type: ignore
|
||||||
|
|
||||||
try:
|
try:
|
||||||
import ssl
|
import ssl
|
||||||
|
|
|
||||||
|
|
@ -108,7 +108,7 @@ class FlaskClient(Client):
|
||||||
|
|
||||||
application: "Flask"
|
application: "Flask"
|
||||||
preserve_context = False
|
preserve_context = False
|
||||||
arg = None
|
arg = None # type: ignore
|
||||||
|
|
||||||
def __init__(self, *args: t.Any, **kwargs: t.Any) -> None:
|
def __init__(self, *args: t.Any, **kwargs: t.Any) -> None:
|
||||||
super().__init__(*args, **kwargs)
|
super().__init__(*args, **kwargs)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue