Captain D. Ezio commited on
Commit
dfbbca9
·
1 Parent(s): 23d56f5

Update __main__.py

Browse files
Files changed (1) hide show
  1. Powers/__main__.py +2 -2
Powers/__main__.py CHANGED
@@ -1,8 +1,8 @@
1
- # import uvloop # Comment it out if using on windows
2
  from Powers.bot_class import Gojo
3
 
4
  if __name__ == "__main__":
5
- # uvloop.install() # Comment it out if using on windows
6
  Gojo().run()
7
 
8
 
 
1
+ import uvloop # Comment it out if using on windows
2
  from Powers.bot_class import Gojo
3
 
4
  if __name__ == "__main__":
5
+ uvloop.install() # Comment it out if using on windows
6
  Gojo().run()
7
 
8