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.

mixed_indentation.py 204B

12345678910
  1. """test mixed tabs and spaces"""
  2. from __future__ import print_function
  3. def spaces_func():
  4. """yo"""
  5. print("yo")
  6. def tab_func():
  7. """yo""" # [mixed-indentation]
  8. print("yo") # [mixed-indentation]