Fix indent
Browse files
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 |
-
|
| 97 |
-
|
| 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 |
|