]> git.armaanb.net Git - lightcards.git/blobdiff - lightcards/deck.py
Update docstrings
[lightcards.git] / lightcards / deck.py
index 06ed135b21b24ade39f78bd3c1d830d507fb585f..f5ad58310a223895a97f8570dbbc2e8b90acbdb0 100644 (file)
@@ -3,7 +3,7 @@
 
 
 class Card:
-    """Card extends the list class, and adds ability to star them."""
+    """Class containing the card information."""
 
     def __init__(self, inp):
         self.starred = False
@@ -59,7 +59,7 @@ class Card:
 
 
 class Status:
-    """The status class keeps track of where in the deck the user is"""
+    """Keeps track of where in the deck the user is"""
 
     def __init__(self):
         self.index = 0