From 7b819b6a1131de84014d023053ab8a9b90dc2beb Mon Sep 17 00:00:00 2001 From: Chad Whitacre Date: Wed, 11 May 2016 16:52:06 -0400 Subject: [PATCH] Clean up country docs (left-over from #4027) --- gratipay/models/country.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/gratipay/models/country.py b/gratipay/models/country.py index 6b6dc5e668..080605d7a2 100644 --- a/gratipay/models/country.py +++ b/gratipay/models/country.py @@ -7,12 +7,9 @@ class Country(Model): """Represent country records from our database (read-only). :var int id: the record's primary key in our ``countries`` table - :var unicode name: the name of the country - :var unicode code2: the country's `ISO 3166-1 alpha-2`_ code - :var unicode code3: the country's `ISO 3166-1 alpha-3`_ code + :var unicode code: the country's `ISO 3166-1 alpha-2`_ code .. _ISO 3166-1 alpha-2 : https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2 - .. _ISO 3166-1 alpha-3 : https://en.wikipedia.org/wiki/ISO_3166-1_alpha-3 """ typname = 'countries'