mirror of
https://github.com/OpenBMB/ChatDev.git
synced 2026-04-27 04:08:09 +00:00
11 lines
335 B
Python
11 lines
335 B
Python
'''
|
|
This is the main file for the typing practice software.
|
|
'''
|
|
from typing_practice import TypingPractice
|
|
from progress_tracker import ProgressTracker
|
|
def main():
|
|
progress_tracker = ProgressTracker()
|
|
typing_practice = TypingPractice(progress_tracker)
|
|
typing_practice.start()
|
|
if __name__ == "__main__":
|
|
main() |