9 lines
254 B
Python
9 lines
254 B
Python
|
from rulings_object import RulingsObject
|
||
|
|
||
|
class Mtgo(RulingsObject):
|
||
|
"""docstring for Mtgo."""
|
||
|
def __init__(self, _id):
|
||
|
self.id = _id
|
||
|
self.url = 'cards/mtgo/{}/rulings'.format(self.id)
|
||
|
super(Mtgo, self).__init__(self.url)
|