Moibe commited on
Commit
3d20903
1 Parent(s): 7dfbf3a

Result as variable

Browse files
Files changed (1) hide show
  1. funciones.py +3 -1
funciones.py CHANGED
@@ -116,6 +116,8 @@ def mass(input1, input2):
116
  except Exception as e:
117
  # código que se ejecutará si se produce la excepción
118
  print(e)
 
 
119
 
120
  if modo == "video":
121
  #Para video
@@ -126,7 +128,7 @@ def mass(input1, input2):
126
  return path
127
  else:
128
  #Para imagen
129
- path = pathlib.Path("result.png")
130
  print("Éste es el path para imagen:", path)
131
  return path
132
  print("Listo! Gracias!")
 
116
  except Exception as e:
117
  # código que se ejecutará si se produce la excepción
118
  print(e)
119
+
120
+ #IMPORTANTE: No se necesita éste IF si usas directo la variable result_path.
121
 
122
  if modo == "video":
123
  #Para video
 
128
  return path
129
  else:
130
  #Para imagen
131
+ path = pathlib.Path(result_path)
132
  print("Éste es el path para imagen:", path)
133
  return path
134
  print("Listo! Gracias!")