src/eric7/CodeFormatting/BlackFormattingDialog.py

branch
eric7
changeset 11148
15e30f0c76a8
parent 11090
f5f5f5803935
equal deleted inserted replaced
11147:dee6e106b4d3 11148:15e30f0c76a8
666 @param message error message 666 @param message error message
667 @type str 667 @type str
668 """ 668 """
669 self.result.emit("failed", str(src), message) 669 self.result.emit("failed", str(src), message)
670 670
671 def path_ignored(self, src, message=""): # noqa: U100 671 def path_ignored(self, src, message=""): # noqa: U-100
672 """ 672 """
673 Public method handling an ignored path. 673 Public method handling an ignored path.
674 674
675 @param src name of the processed file 675 @param src name of the processed file
676 @type pathlib.Path or str 676 @type pathlib.Path or str
744 """ 744 """
745 self.__queue.put( 745 self.__queue.put(
746 BlackMultiprocessingResult(status="failed", filename=str(src), data=message) 746 BlackMultiprocessingResult(status="failed", filename=str(src), data=message)
747 ) 747 )
748 748
749 def path_ignored(self, src, message=""): # noqa: U100 749 def path_ignored(self, src, message=""): # noqa: U-100
750 """ 750 """
751 Public method handling an ignored path. 751 Public method handling an ignored path.
752 752
753 @param src name of the processed file 753 @param src name of the processed file
754 @type pathlib.Path or str 754 @type pathlib.Path or str

eric ide

mercurial