From a765093f643a1769f60f49ecd11c9474c44be65a Mon Sep 17 00:00:00 2001 From: Ray Lyon Date: Mon, 28 Mar 2022 19:48:18 -0400 Subject: [PATCH] added starz and showtime --- movie-check/movie_check.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/movie-check/movie_check.py b/movie-check/movie_check.py index 4d66ef5..0156327 100644 --- a/movie-check/movie_check.py +++ b/movie-check/movie_check.py @@ -102,6 +102,10 @@ def services_speller(service): service_proper = "Apple TV+" elif service == "paramount": service_proper = "Paramount+" + elif service == "starz": + service_proper = "STARZ" + elif service == "showtime": + service_proper = "Showtime" else: return service return service_proper