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 7bccacd commit 27e7809Copy full SHA for 27e7809
tests/client.py
@@ -16,6 +16,6 @@ async def main():
16
print(html)
17
18
19
-if __name__ == '__main__':
+if __name__ == "__main__":
20
loop = asyncio.get_event_loop()
21
loop.run_until_complete(main())
tests/server.py
@@ -41,7 +41,8 @@ async def handle(self, request):
41
42
return web.Response(text=response)
43
44
+
45
46
with contextlib.redirect_stdout(new_target=sys.stderr):
47
app = web.Application()
48
handler = Handler()
0 commit comments