Skip to content

Latest commit

 

History

History
46 lines (31 loc) · 759 Bytes

File metadata and controls

46 lines (31 loc) · 759 Bytes

Coding Guidelines

  • don't import external libraries (just if really really essential...! )
  • naming in english
  • use meaningful and appropriate naming

Please follow the style guide below when adding functionalities.

# imports
import math
import sys
from myclass import MyClass

# example function
def add_one(number:int) -> int:
    """Increase number by one.
    Author: John Doe

    Example:
    >>> add_one(1)

    Args:
        number (int): a number

    Returns:
        int: number increased by one
    """
    return number + 1


# Aligned with opening delimiter.
foo = long_function_name(var_one, var_two,
                         var_three, var_four)

if foo == 'blah':
    do_blah_thing()
    
do_one()
do_two()
do_three()