File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
pydocstringformatter/_utils Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 22 ParsingError ,
33 PydocstringFormatterError ,
44 TomlParsingError ,
5+ UnstableResultError ,
56)
67from pydocstringformatter ._utils .file_diference import compare_formatters , generate_diff
78from pydocstringformatter ._utils .find_docstrings import is_docstring
1617 "ParsingError" ,
1718 "PydocstringFormatterError" ,
1819 "TomlParsingError" ,
20+ "UnstableResultError" ,
1921 "print_to_console" ,
2022 "sys_exit" ,
2123]
Original file line number Diff line number Diff line change @@ -12,3 +12,7 @@ class UnrecognizedOption(PydocstringFormatterError):
1212
1313class TomlParsingError (PydocstringFormatterError ):
1414 """Raised when there are errors with the parsing of the toml file."""
15+
16+
17+ class UnstableResultError (PydocstringFormatterError ):
18+ """Raised when the result of the formatting is unstable."""
You can’t perform that action at this time.
0 commit comments