goldsborough/your_app

View on GitHub
your_app/code.py

Summary

Maintainability
A
0 mins
Test Coverage
#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""
Your application's badass source code.
"""

def square(x):
    """
    Squares a value.

    Equivalent to calling x**2.

    Arguments:
        x (int|float): The value to square.

    Returns:
        The squared value.
    """

    return x * x