Unresolved async link / waiting in PyCharm

Sometimes in PyCharm 2017.1.4 with python3.6 operators async/awaitappear as unresolved, although there are no errors, and in the next tab is async/awaitnot underlined as an error.

Restart the fix for this problem. How to fix it?

image

+4
source share
1 answer

I just got into the same problem. This is because the project interpreter was configured on python2.7, await / async keys are new as on python3, and not backward compatible.

preferences> project> project-interpreter is where I can choose the correction version.

+2
source

Source: https://habr.com/ru/post/1679672/


All Articles