소스 검색

mypy: ignore imports of python-telegram-bot

```
location_guessing_game_telegram_bot/__init__.py:27: error: Skipping analyzing 'telegram.ext': found module but no type hints or library stubs
location_guessing_game_telegram_bot/__init__.py:27: note: See https://mypy.readthedocs.io/en/latest/running_mypy.html#missing-imports
location_guessing_game_telegram_bot/__init__.py:27: error: Skipping analyzing 'telegram': found module but no type hints or library stubs
location_guessing_game_telegram_bot/__init__.py:28: error: Skipping analyzing 'telegram.update': found module but no type hints or library stubs
```
Fabian Peter Hammerle 4 년 전
부모
커밋
d488c3918b
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      mypy.ini

+ 4 - 0
mypy.ini

@@ -0,0 +1,4 @@
+[mypy]
+[mypy-telegram.*]
+# no longer required in python-telegram-bot>=13 ?
+ignore_missing_imports = True