Scrython/scrython/cards/randomcard.py

8 lines
173 B
Python

from .cards_object import CardsObject
class Random(CardsObject):
def __init__(self):
self.url = 'cards/random?'
super(Random, self).__init__(self.url)