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.

autopep8 414B

123456789101112
  1. #!/Users/Esthi/thesis_ek/thesisenv/bin/python
  2. # EASY-INSTALL-ENTRY-SCRIPT: 'autopep8==1.3.5','console_scripts','autopep8'
  3. __requires__ = 'autopep8==1.3.5'
  4. import re
  5. import sys
  6. from pkg_resources import load_entry_point
  7. if __name__ == '__main__':
  8. sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
  9. sys.exit(
  10. load_entry_point('autopep8==1.3.5', 'console_scripts', 'autopep8')()
  11. )