You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 11, 2024. It is now read-only.
input('LICENSE does not exist; Please download it from https://github.com/chisaku-dev/EasyBot.py and try again')
41
+
better.input('LICENSE does not exist; Please download it from https://github.com/chisaku-dev/EasyBot.py and try again')
25
42
quit()
26
43
else:
27
-
input(f"{open('LICENSE', 'r').read()}\n [If you press ENTER, you agree to the LICENSE included]")
44
+
better.input(f"{open('LICENSE', 'r').read()}\n [If you press ENTER, you agree to the LICENSE included]")
28
45
29
46
classcommands:
30
47
defhelp():
31
48
ui.sys_message('Commands List')
32
49
ui.list_dict(choices)
33
50
defadd():
34
-
tks=input('What is your bot token(s) (if multiple, seperate them with spaces)? Obtain it from https://discord.com/developers/ and paste it here: ').split(' ')
51
+
tks=better.input('What is your bot token(s) (if multiple, seperate them with spaces)? Obtain it from https://discord.com/developers/ and paste it here: ').split(' ')
35
52
exist_tks=data.extract_tks()
36
53
fortkintks:
37
54
ifnottkinexist_tks:
38
-
data.save(tk, input(f'Prefix for {tk}: '))
55
+
data.save(tk, better.input(f'Prefix for {tk}: '))
39
56
else:
40
57
print(tk, 'already exists in the database; Please remove the previous entry before trying to add this token again')
41
58
ui.sys_message('Success')
@@ -66,8 +83,8 @@ def boots():
66
83
else:
67
84
ui.sys_message('There are no bots stored')
68
85
defboott():
69
-
tk=input('What is the bot token?\n')
70
-
px=input('What is the desired bot prefix?\n')
86
+
tk=better.input('What is the bot token?\n')
87
+
px=better.input('What is the desired bot prefix?\n')
0 commit comments