mattiashallberg commited on
Commit
c11d45d
·
verified ·
1 Parent(s): bbdf34b

chad_lafferty

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -30,6 +30,8 @@ def environ_auth(username, password):
30
  return True
31
  elif username == os.environ.get('hiroyasu_ito') and password == os.environ.get('hiroyasu_ito_password'):
32
  return True
 
 
33
  else:
34
  return False
35
 
 
30
  return True
31
  elif username == os.environ.get('hiroyasu_ito') and password == os.environ.get('hiroyasu_ito_password'):
32
  return True
33
+ elif username == os.environ.get('chad_lafferty') and password == os.environ.get('chad_lafferty_password'):
34
+ return True
35
  else:
36
  return False
37