File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 6969
7070<!-- Changes to Black's terminal output and error messages -->
7171
72+ - Calling ` black --help ` multiple times will return the same help contents each time
73+ (#3516 )
7274- Verbose logging now shows the values of ` pyproject.toml ` configuration variables
7375 (#3392 )
7476- 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(
244244 multiple = True ,
245245 help = (
246246 "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 ) )} )."
248248 " Useful for formatting cells with custom python magics."
249249 ),
250250 default = [],
You can’t perform that action at this time.
0 commit comments