Lisibonny commited on
Commit
d6ee932
1 Parent(s): 854ca19

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -53,8 +53,8 @@ def main():
53
 
54
  df, fecha_min, fecha_max=cargar_articulos()
55
 
56
- fecha_min=datetime.strptime(fecha_min, '%Y-%m-%d')
57
- fecha_max=datetime.strptime(fecha_max, '%Y-%m-%d')
58
 
59
  days=(fecha_max-fecha_min).days
60
 
 
53
 
54
  df, fecha_min, fecha_max=cargar_articulos()
55
 
56
+ fecha_min=datetime.strptime(fecha_min, '%Y-%m-%d %H:%M:%S')
57
+ fecha_max=datetime.strptime(fecha_max, '%Y-%m-%d %H:%M:%S')
58
 
59
  days=(fecha_max-fecha_min).days
60