From f03d4586fa49be66de409b8671765f227920b1a3 Mon Sep 17 00:00:00 2001 From: Nanda Scott Date: Mon, 22 Oct 2018 10:36:15 -0400 Subject: [PATCH] Updated sets to current standards --- scrython/sets/sets.py | 12 ++++++------ scrython/sets/sets_object.py | 8 ++++---- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/scrython/sets/sets.py b/scrython/sets/sets.py index 7111578..abea2b1 100644 --- a/scrython/sets/sets.py +++ b/scrython/sets/sets.py @@ -29,7 +29,7 @@ class Sets(SetsObject): set_parent_set_code(num) : str ........ The set code for the parent set. set_card_count(num) : int .............. The number of cards in the set. set_digital(num) : bool ..... True if this set is only featured on MTGO. - set_foil(num) : bool .................. True if this set only has foils. + set_foil_only(num) : bool ............. True if this set only has foils. set_icon_svg_uri(num) : str ........ A URI to the SVG of the set symbol. set_search_uri(num) : str ......... The scryfall API url for the search. @@ -116,10 +116,10 @@ class Sets(SetsObject): return self.scryfallJson['data'][num]['digital'] - def set_foil(self, num): - super(Sets, self)._checkForTupleKey('data', num, 'foil') + def set_foil_only(self, num): + super(Sets, self)._checkForTupleKey('data', num, 'foil_only') - return self.scryfallJson['data'][num]['foil'] + return self.scryfallJson['data'][num]['foil_only'] def set_icon_svg_uri(self, num): super(Sets, self)._checkForTupleKey('data', num, 'icon_svg_uri') @@ -164,8 +164,8 @@ class Sets(SetsObject): def digital(self): raise AttributeError('This object has no key \'digital\'') - def foil(self): - raise AttributeError('This object has no key \'foil\'') + def foil_only(self): + raise AttributeError('This object has no key \'foil_only\'') def icon_svg_uri(self): raise AttributeError('This object has no key \'icon_svg_uri\'') diff --git a/scrython/sets/sets_object.py b/scrython/sets/sets_object.py index 8e5a170..a048dc4 100644 --- a/scrython/sets/sets_object.py +++ b/scrython/sets/sets_object.py @@ -26,7 +26,7 @@ class SetsObject(object): parent_set_code : str ................. The set code for the parent set. card_count : int ...................... The number of cards in the set. digital : bool .............. True if this set is only featured on MTGO. - foil : bool ........................... True if this set only has foils. + foil_only : bool ........................... True if this set only has foils. icon_svg_uri : str ................ A URI to the SVG of the set symbol. search_uri : str .................. The scryfall API url for the search. """ @@ -120,10 +120,10 @@ class SetsObject(object): return self.scryfallJson['digital'] - def foil(self): - self._checkForKey('foil') + def foil_only(self): + self._checkForKey('foil_only') - return self.scryfallJson['foil'] + return self.scryfallJson['foil_only'] def icon_svg_uri(self): self._checkForKey('icon_svg_uri')