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.

epylint 250B

1234567891011
  1. #!/Users/Esthi/thesis_ek/thesisenv/bin/python
  2. # -*- coding: utf-8 -*-
  3. import re
  4. import sys
  5. from pylint import run_epylint
  6. if __name__ == '__main__':
  7. sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
  8. sys.exit(run_epylint())