cbg342 commited on
Commit
325e7c5
1 Parent(s): e2c0db1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -10,7 +10,7 @@ if 'displayChat' not in st.session_state:
10
  os.system('mkdir files')
11
  os.system('mkdir plugins')
12
  googleS = requests.get('https://raw.githubusercontent.com/d3n7/GPT-4-Unlimited-Tools/main/plugins/google.py').content
13
- googlePath = os.path.join(os.path.realpath(__file__), 'plugins', 'google.py')
14
  with open(googlePath, 'wb') as f:
15
  f.write(googleS)
16
 
 
10
  os.system('mkdir files')
11
  os.system('mkdir plugins')
12
  googleS = requests.get('https://raw.githubusercontent.com/d3n7/GPT-4-Unlimited-Tools/main/plugins/google.py').content
13
+ googlePath = os.path.join(os.path.realpath(os.path.dirname(__file__)), 'plugins', 'google.py')
14
  with open(googlePath, 'wb') as f:
15
  f.write(googleS)
16