Предупреждение о подсказке типа Pycharm при открытии объекта Path - PullRequest
0 голосов
/ 11 марта 2019

Используя следующий код:

from pathlib import Path

file = Path("test.txt")

with open(file) as fl:
    pass 

Pycharm выдает следующее предупреждение на file

Unexpected type(s): (Path) 

Possible types: 
  (Union[str, bytes, int]) 
  (Union[str, bytes, int, PathLike]) less... (Ctrl+F1) 

Inspection info: This inspection detects type errors in function call expressions. Due to dynamic dispatch and duck typing, this is possible in a limited but useful number of cases. Types of function parameters can be specified in docstrings or in Python 3 function annotations.

Я что-то не так делаю?

...