Moibe commited on
Commit
acc42fe
·
verified ·
1 Parent(s): 6814c00

Fix indent

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -93,8 +93,8 @@ def inference(img, lang):
93
  result = ocr.infer(img, cls=True)[0]
94
 
95
  if result is not None:
96
- for item in result:
97
- print(item)
98
  else:
99
  print("La variable 'result' es None, no hay elementos para procesar.")
100
 
 
93
  result = ocr.infer(img, cls=True)[0]
94
 
95
  if result is not None:
96
+ for item in result:
97
+ print(item)
98
  else:
99
  print("La variable 'result' es None, no hay elementos para procesar.")
100