Skip to content

Commit

Permalink
configure console app to ask for quick or not quick ratings
Browse files Browse the repository at this point in the history
  • Loading branch information
victor-zheng-codes committed Dec 28, 2023
1 parent 716090a commit 353a482
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/ratings_calculator/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,10 @@
all_time_high = int(input("All Time High Rating: "))

# established or provisional rating? (can be removed in the future))
rating_type = int(input("Rating Type: (1 for established, 0 for provisional: "))
rating_type = int(input("Rating Type: (1 for established, 0 for provisional): "))

# established or provisional rating? (can be removed in the future))
quickTourney = int(input("Quick Tournament: (1 for quick less than 15 minutes total, 0 for classical): "))

if rating_type == 1:
# new_rating = established_ratings(1450, 1450, 4, [1237, 1511, 1214, 1441, 1579, 2133])
Expand Down

0 comments on commit 353a482

Please sign in to comment.