Glainez commited on
Commit
9ba9174
·
1 Parent(s): 2b82ef8

correct parsing input params

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -6,6 +6,7 @@ from io import BytesIO, StringIO
6
  from PIL import Image
7
  import pandas as pd
8
  import os.path
 
9
 
10
  DEBUG = True
11
 
@@ -35,6 +36,7 @@ def login(username, password) -> bool:
35
 
36
  if not len(df):
37
  return False
 
38
 
39
  for idx, row in df.iterrows():
40
  if row['username'] == username and row['password'] == password:
@@ -42,7 +44,8 @@ def login(username, password) -> bool:
42
  restaurant_name = str(row['restaurant_name'])
43
  mode = 'waste'
44
  possible_modes = str(row.get('modes')).split(':')
45
- possible_shifts = {i.split(':')[0]: i.split(':')[1] for i in str(row.get('shifts')).split('-')}
 
46
 
47
  config_aux = {'restaurant_id': restaurant_id,
48
  'restaurant_name': restaurant_name,
 
6
  from PIL import Image
7
  import pandas as pd
8
  import os.path
9
+ import numpy as np
10
 
11
  DEBUG = True
12
 
 
36
 
37
  if not len(df):
38
  return False
39
+ df = df.replace({np.nan: None})
40
 
41
  for idx, row in df.iterrows():
42
  if row['username'] == username and row['password'] == password:
 
44
  restaurant_name = str(row['restaurant_name'])
45
  mode = 'waste'
46
  possible_modes = str(row.get('modes')).split(':')
47
+ possible_shifts = {i.split(':')[0]: i.split(':')[1] for i in str(row.get('shifts')).split('-')} \
48
+ if row.get('shifts') else {'no shift': None}
49
 
50
  config_aux = {'restaurant_id': restaurant_id,
51
  'restaurant_name': restaurant_name,