isort version: 5.10.1 Unindented comments in an indented block seem to get cut off at the indent, which generates a syntax error. Code: ```py import sys if True: # this will get cut off import os ``` Output: ```py import sys if True: is will get cut off import os ```
isort version: 5.10.1
Unindented comments in an indented block seem to get cut off at the indent, which generates a syntax error.
Code:
Output: