src/eric7/CodeFormatting/BlackFormattingDialog.py

branch
eric7
changeset 10683
779cda568acb
parent 10621
f5631f40c4d9
child 10689
3ede487187f2
equal deleted inserted replaced
10682:47be220abdaf 10683:779cda568acb
669 """ 669 """
670 Public method handling an ignored path. 670 Public method handling an ignored path.
671 671
672 @param src name of the processed file 672 @param src name of the processed file
673 @type pathlib.Path or str 673 @type pathlib.Path or str
674 @param message ignore message (default to "") 674 @param message ignore message (default to "") (unused)
675 @type str (optional) 675 @type str (optional)
676 """ 676 """
677 self.result.emit("ignored", str(src), "") 677 self.result.emit("ignored", str(src), "")
678 678
679 679
747 """ 747 """
748 Public method handling an ignored path. 748 Public method handling an ignored path.
749 749
750 @param src name of the processed file 750 @param src name of the processed file
751 @type pathlib.Path or str 751 @type pathlib.Path or str
752 @param message ignore message (default to "") 752 @param message ignore message (default to "") (unused)
753 @type str (optional) 753 @type str (optional)
754 """ 754 """
755 self.__queue.put( 755 self.__queue.put(
756 BlackMultiprocessingResult(status="ignored", filename=str(src), data="") 756 BlackMultiprocessingResult(status="ignored", filename=str(src), data="")
757 ) 757 )

eric ide

mercurial