Skip to content

Commit ec119d0

Browse files
committed
style: format code to pass code-style-check
1 parent 57e6d4c commit ec119d0

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

PPOCRLabel.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2877,7 +2877,11 @@ def autoRecognition(self):
28772877
end_index = min(self.currIndex + self.auto_recognition_num, len(self.mImgList))
28782878
images_to_check = self.mImgList[start_index:end_index]
28792879

2880-
recorded_basenames = [os.path.basename(path) for path in self.fileStatedict.keys() if self.fileStatedict[path] == 1]
2880+
recorded_basenames = [
2881+
os.path.basename(path)
2882+
for path in self.fileStatedict.keys()
2883+
if self.fileStatedict[path] == 1
2884+
]
28812885

28822886
uncheckedList = []
28832887
for image_path in images_to_check:

0 commit comments

Comments
 (0)