Post #57 1.27K May 1, 2025, 17:08 UTC https://github.com/wemake-services/wemake-python-styleguide/issues/3404#ast #wemake_python_styleguide GitHub Forbid comments in `f` and `t` string · Issue #3404 · wemake-services/wemake-python-styleguide This code should raise a violation: >>> x = f'{ 1 # comment ... }' Because comments make f string implicilty multiline. And comments must not be present in strings. This is not right. 👍 1