This commit is contained in:
Rohan-Salwan 2021-09-11 19:04:24 +05:30
parent d589f2d5f7
commit a5f001b254
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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)