Source code for temp_service

"""
A Temporary Service File for testing Sphinx Documentation
"""

[docs] def main(verbose=False): """ :param verbose: Whether to print verbose output :type verbose: bool :return: """ if verbose: print('Hello World!')
if __name__ == '__main__': main(True)