Source code for example_package_github_pixel3.example_package_github_pixel3

# -*- coding: utf-8 -*-

"""Main module."""


[docs]def test_message(): """ This returns a test message for the unittest """ return 'This is a test message for unittest'
[docs]def multiply_two_number(a, b): """ Returns the result of multiplying two numbers """ # unused_var = 'blah' return a * b