jenkins-bot has submitted this change and it was merged.
Change subject: Add Mercury, Mimas and Venus to the list of globes ......................................................................
Add Mercury, Mimas and Venus to the list of globes
Found using https://www.wikidata.org/wiki/User:Byrial/Globes
Change-Id: If8aeed3bad8169a2f02dd1bf54df933b30bbcb5a --- M pywikibot/families/wikidata_family.py 1 file changed, 8 insertions(+), 3 deletions(-)
Approvals: Legoktm: Looks good to me, approved jenkins-bot: Verified
diff --git a/pywikibot/families/wikidata_family.py b/pywikibot/families/wikidata_family.py index b87907d..38c7a38 100644 --- a/pywikibot/families/wikidata_family.py +++ b/pywikibot/families/wikidata_family.py @@ -40,6 +40,11 @@
def globes(self, code): """Supported globes for Coordinate datatype""" - return {'earth': 'http://www.wikidata.org/entity/Q2', - 'mars': 'http://www.wikidata.org/entity/Q111', - 'moon': 'http://www.wikidata.org/entity/Q405%27%7D + return { + 'earth': 'http://www.wikidata.org/entity/Q2', + 'mars': 'http://www.wikidata.org/entity/Q111', + 'mercury': 'http://www.wikidata.org/entity/Q308', + 'mimas': 'http://www.wikidata.org/entity/Q15034', + 'moon': 'http://www.wikidata.org/entity/Q405', + 'venus': 'http://www.wikidata.org/entity/Q313', + }
pywikibot-commits@lists.wikimedia.org