We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be9fd50 commit e828321Copy full SHA for e828321
exts/vote_handling.py
@@ -31,9 +31,13 @@ async def fill_topgg_info(self):
31
self.bot_vote_channel = await self.bot.fetch_channel(1122755262466498590) # type: ignore
32
33
app = web.Application()
34
- app.add_routes([web.post("/topgg", self.topgg_handling)])
35
- app.add_routes([web.post("/dbl_rpl", self.dbl_handling_rpl)])
36
- app.add_routes([web.post("/dbl_ui", self.dbl_handling_ui)])
+ app.add_routes(
+ [
+ web.post("/topgg", self.topgg_handling),
37
+ web.post("/dbl_rpl", self.dbl_handling_rpl),
38
+ web.post("/dbl_ui", self.dbl_handling_ui),
39
+ ]
40
+ )
41
self.runner = web.AppRunner(app)
42
await self.runner.setup()
43
site = web.TCPSite(self.runner, "127.0.0.1", 8000)
0 commit comments