pylint-errors

W0111 (assign-to-new-keyword)

:x: Problematic code:

async = True

:heavy_check_mark: Correct code:

is_async = True

Rationale:

async and await are reserved Python keywords in Python >= 3.6 versions.