Scrython/scrython/cards/randomcard.py

8 lines
173 B
Python
Raw Normal View History

from .cards_object import CardsObject
class Random(CardsObject):
def __init__(self):
2018-02-14 02:02:48 +00:00
self.url = 'cards/random?'
super(Random, self).__init__(self.url)