ruff/crates/ruff_linter/resources/test/fixtures/flake8_quotes/doubles.py

5 lines
191 B
Python

this_should_be_linted = "double quote string"
this_should_be_linted = u"double quote string"
this_should_be_linted = f"double quote string"
this_should_be_linted = f"double {'quote'} string"