Curso-lenguaje-python/catch-all/06_bots_telegram/07_movie2_bot/movie/Pop.py

9 lines
153 B
Python
Raw Normal View History

2024-07-30 00:43:20 +02:00
from movie.Movie import Movie
class Pop(Movie):
def __init__(self):
super(Pop, self).__init__(name='Pop Movie')
self.type = "pop"