Scrython/scrython/rulings/scryfall_id.py

10 lines
310 B
Python
Raw Normal View History

from .rulings_object import RulingsObject
2018-01-31 01:36:44 +00:00
class Id(RulingsObject):
def __init__(self, **kwargs):
2018-02-13 21:55:32 +00:00
if kwargs.get('id') is None:
2018-02-14 02:02:48 +00:00
raise TypeError('No id provided to search by')
2018-02-13 21:55:32 +00:00
self.url = 'cards/{}/rulings'.format(str(kwargs.get('id')))
2018-01-31 01:36:44 +00:00
super(Id, self).__init__(self.url)