Skip to content

Commit

Permalink
Moved additional parameter to the end of the arguments list.
Browse files Browse the repository at this point in the history
  • Loading branch information
nickovs committed Feb 16, 2019
1 parent 1e23b2d commit d6e83a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion voluptuous/schema_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -1128,7 +1128,7 @@ class Inclusive(Optional):
"""

def __init__(self, schema, group_of_inclusion,
msg=None, default=UNDEFINED, description=None):
msg=None, description=None, default=UNDEFINED):
super(Inclusive, self).__init__(schema, msg=msg,
default=default,
description=description)
Expand Down

0 comments on commit d6e83a6

Please sign in to comment.