yaleh's picture
Formatted with PEP8.
a7dd734

Python Guidelines

General Guidelines

  • Use 2 spaces for indentation.
  • Use snake_case for variable names.
  • Use camelCase for class names.
  • Use UPPER_CASE for constants.
  • Use triple quotes for multi-line strings.
  • Format with PEP 8 in mind.
  • Limit line length to 80 characters.