We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0c869f commit 67992e2Copy full SHA for 67992e2
main.py
@@ -98,13 +98,9 @@ async def on_ready():
98
print('------------------')
99
print(f'Server count: {str(len(client.guilds))}')
100
101
- if bool(log) == True:
102
- print(f'Logging: {colors.green}{log}{colors.end}')
103
- print('==================')
104
- else:
105
- print(f'Logging: {colors.red}{log}{colors.end}')
106
107
- pass
+ if log: print(f'Logging: {colors.green}{log}{colors.end}')
+ else: print(f'Logging: {colors.red}{log}{colors.end}')
+ print('==================')
108
print('Bot admins')
109
110
print(colors.cyan)
0 commit comments