feat: start enum val with buffer, count from top

It is good to have buffers between enum values.
And start counting from the "top of the hierarchy" value,
the Director, to the bottom because it is unlikely that a
lot of values will be added on top of the Director.
pull/496/head
Dmitry Shvetsov 2020-12-19 13:53:07 +10:00
parent f103307ce3
commit 98c1d1dcb7
2 changed files with 6 additions and 7 deletions

View File

@ -69,9 +69,9 @@
"\n",
"class Rank(Enum):\n",
"\n",
" OPERATOR = 0\n",
" SUPERVISOR = 1\n",
" DIRECTOR = 2\n",
" OPERATOR = 30\n",
" SUPERVISOR = 20\n",
" DIRECTOR = 10\n",
"\n",
"\n",
"class Employee(metaclass=ABCMeta):\n",

View File

@ -5,10 +5,9 @@ from enum import Enum
class Rank(Enum):
OPERATOR = 0
SUPERVISOR = 1
DIRECTOR = 2
OPERATOR = 30
SUPERVISOR = 20
DIRECTOR = 10
class Employee(metaclass=ABCMeta):