Style GuideΒΆ

This project uses single-quotes, four space indentation. Ex:

def the_function (foo):
    """Purpose of the function
    
    :param env: 
    :return: the essence of calling b
    """
    call_a()
    return call_b()

Please ensure any pull requests follow this closely. If you notice existing code which doesn’t follow these practices, feel free to shout and we will address this.