We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57e6d4c commit ec119d0Copy full SHA for ec119d0
PPOCRLabel.py
@@ -2877,7 +2877,11 @@ def autoRecognition(self):
2877
end_index = min(self.currIndex + self.auto_recognition_num, len(self.mImgList))
2878
images_to_check = self.mImgList[start_index:end_index]
2879
2880
- recorded_basenames = [os.path.basename(path) for path in self.fileStatedict.keys() if self.fileStatedict[path] == 1]
+ recorded_basenames = [
2881
+ os.path.basename(path)
2882
+ for path in self.fileStatedict.keys()
2883
+ if self.fileStatedict[path] == 1
2884
+ ]
2885
2886
uncheckedList = []
2887
for image_path in images_to_check:
0 commit comments