"""
Module containing the class: ManyCookieFortune

Author: Anne Bracy (awb93)
Date:   Mar 17, 2018
"""

 
class ManyCookieFortune():
    """
    A fortune cookie that can contain a quote or another fortune cookie
    
    to create a fortune with a quote in it:
    quote = "Do. Or do not. There is no try. -- Master Yoda"
    p1 = fortune.ManyCookieFortune(quote, None) 
    """
    
    def __init__(self, quote, cookie):
        """
        Creates a new ManyCookieFortune
        """
        self.quote = quote
        self.cookie = cookie