Skip to content

Commit

Permalink
Update assistant_gui.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Ratnesh4193 authored Nov 1, 2020
1 parent 1263383 commit ddf2175
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions script/assistant_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@ def respond(voice_data):
# Login Sites
elif there_exists(["login"],voice_data):
user=record_audio("Tell me the User name")
user.replace(' ','')
user=user.replace(' ','')
password=record_audio("Tell me the password")
password.replace(' ','')
password=password.replace(' ','')
print(user,password)
if there_exists(["codechef"],voice_data):
login_site(user,password,0)
Expand Down

0 comments on commit ddf2175

Please sign in to comment.