You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Looking at the surya_recognition function, its return type annotation List[Optional[Page]] suggests that each element in the returned list could be either a Page object or None.
However, based on the implementation, the function always returns a list of Page objects (never None).
Looking at the
surya_recognition
function, its return type annotationList[Optional[Page]]
suggests that each element in the returned list could be either aPage
object orNone
.However, based on the implementation, the function always returns a list of
Page
objects (neverNone
).marker/marker/ocr/recognition.py
Lines 69 to 130 in b2cae2e
The text was updated successfully, but these errors were encountered: