Skip to content

Commit 294149d

Browse files
committed
Move this down to match order of arguments
1 parent 1cba03b commit 294149d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/inquirer/questions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,14 +49,14 @@ def __init__(
4949
choices.append(GLOBAL_OTHER_CHOICE)
5050

5151
self.name = name
52-
self._other = other
5352
self._message = message
5453
self._choices = choices or []
5554
self._default = default
5655
self._ignore = ignore
5756
self._validate = validate
5857
self.answers = {}
5958
self.show_default = show_default
59+
self._other = other
6060

6161
def add_choice(self, choice):
6262
try:

0 commit comments

Comments
 (0)