File tree 2 files changed +3
-1
lines changed
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 69
69
70
70
<!-- Changes to Black's terminal output and error messages -->
71
71
72
+ - Calling ` black --help ` multiple times will return the same help contents each time
73
+ (#3516 )
72
74
- Verbose logging now shows the values of ` pyproject.toml ` configuration variables
73
75
(#3392 )
74
76
- Fix false symlink detection messages in verbose output due to using an incorrect
Original file line number Diff line number Diff line change @@ -244,7 +244,7 @@ def validate_regex(
244
244
multiple = True ,
245
245
help = (
246
246
"When processing Jupyter Notebooks, add the given magic to the list"
247
- f" of known python-magics ({ ', ' .join (PYTHON_CELL_MAGICS )} )."
247
+ f" of known python-magics ({ ', ' .join (sorted ( PYTHON_CELL_MAGICS ) )} )."
248
248
" Useful for formatting cells with custom python magics."
249
249
),
250
250
default = [],
You can’t perform that action at this time.
0 commit comments