Commit f499c31b authored by Cody Zacharias's avatar Cody Zacharias Committed by GitHub

Fix asyncio loop space

parent b57a1f2a
...@@ -11,8 +11,6 @@ import json ...@@ -11,8 +11,6 @@ import json
import re import re
import sys import sys
async def getUrl(init): async def getUrl(init):
if init == -1: if init == -1:
url = "https://twitter.com/search?f=tweets&vertical=default&lang=en&q=" url = "https://twitter.com/search?f=tweets&vertical=default&lang=en&q="
...@@ -190,4 +188,4 @@ if __name__ == "__main__": ...@@ -190,4 +188,4 @@ if __name__ == "__main__":
check() check()
loop = asyncio.get_event_loop() loop = asyncio.get_event_loop()
loop.run_until_complete(main()) loop.run_until_complete(main())
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment