]> git.armaanb.net Git - lightcards.git/blobdiff - lightcards/deck.py
Reformat using Black
[lightcards.git] / lightcards / deck.py
index b0822a9705704ad055fe2876186e62be7562d076..eac8b69c9de59bf5ec4b3ace6d651d3a16db230f 100644 (file)
@@ -1,8 +1,10 @@
 # Classes pertaining to the card deck
 # Armaan Bhojwani 2021
 
+
 class Card(list):
     """Card extends the list class, and adds ability to star them."""
+
     def __init__(self, inp):
         super().__init__(inp)
         self.starred = False
@@ -29,8 +31,9 @@ class Card(list):
             return "Not starred"
 
 
-class Status():
+class Status:
     """The status class keeps track of where in the deck the user is"""
+
     def __init__(self):
         self.index = 0
         self.side = 0