From 1cfc0685bf75319a9db2dd4886894268fdfb1dfb Mon Sep 17 00:00:00 2001 From: Roy Olav Purser Date: Fri, 4 Feb 2022 18:01:07 +0100 Subject: [PATCH] ignore imports for requests, youtube_dl and streamlink in mypy --- backend/mypy.ini | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 backend/mypy.ini diff --git a/backend/mypy.ini b/backend/mypy.ini new file mode 100644 index 0000000..ee65630 --- /dev/null +++ b/backend/mypy.ini @@ -0,0 +1,10 @@ +[mypy] + +[mypy-streamlink] +ignore_missing_imports = True + +[mypy-youtube_dl] +ignore_missing_imports = True + +[mypy-expiringdict] +ignore_missing_imports = True