Skip to content

Commit 616583a

Browse files
committed
lines too long fixes.
1 parent 41d0e81 commit 616583a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

dash/development/validator.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,14 @@ def _validator_options_with_unique_values(self, field, value):
2828
if not isinstance(option_dict, dict):
2929
self._error(
3030
field,
31-
"The option at index {} is not a dictionary!".format(i)
31+
"The option at index {} is not a dictionary!"\
32+
.format(i)
3233
)
3334
if 'value' not in option_dict:
3435
self._error(
3536
field,
36-
"The option at index {} does not have a 'value' key!".format(i)
37+
"The option at index {} does not have a 'value' key!"\
38+
.format(i)
3739
)
3840
curr = option_dict['value']
3941
if curr in values:

0 commit comments

Comments
 (0)