Browse Source

Fixed #31313 -- Fixed is_upperclass() example in enumeration types docs.

Andrey Doroschenko 5 years ago
parent
commit
f1016814d8
1 changed files with 4 additions and 1 deletions
  1. 4 1
      docs/ref/models/fields.txt

+ 4 - 1
docs/ref/models/fields.txt

@@ -204,7 +204,10 @@ choices in a concise way::
         )
 
         def is_upperclass(self):
-            return self.year_in_school in {YearInSchool.JUNIOR, YearInSchool.SENIOR}
+            return self.year_in_school in {
+                self.YearInSchool.JUNIOR,
+                self.YearInSchool.SENIOR,
+            }
 
 These work similar to :mod:`enum` from Python's standard library, but with some
 modifications: