This code should raise a violation: ```python >>> x = f'{ 1 # comment ... }' ``` Because comments make f string implicilty multiline. And comments must not be present in strings. This is not right.
This code should raise a violation:
Because comments make f string implicilty multiline.
And comments must not be present in strings. This is not right.