This repository has been archived on 2023-11-10. You can view files and clone it, but cannot push or open issues or pull requests.
freecodecamp-projects/8-scientific-computing-python/2-time-calculator/main.py

10 lines
259 B
Python
Raw Permalink Normal View History

2022-11-27 09:10:49 +00: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("10:10 PM", "3:30", "monday"))
# Run unit tests automatically
main(module='test_module', exit=False)