time-calculator/main.py

10 lines
249 B
Python
Raw Normal View History

2020-09-29 19:15:47 +02:00
# This entrypoint file to be used in development. Start by reading README.md
from time_calculator import add_time
from unittest import main
print(add_time("11:06 PM", "2:02"))
# Run unit tests automatically
main(module='test_module', exit=False)