Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

formatted_string_literal_with_if_py36.py 212B

12345678
  1. """Test that `if` in formatted string literal won't break Pylint."""
  2. # pylint: disable=missing-docstring, pointless-statement, using-constant-test
  3. f'{"+" if True else "-"}'
  4. if True:
  5. pass
  6. elif True:
  7. pass