cleanup examples and remove requests library
This commit is contained in:
@@ -27,7 +27,9 @@ logger.remove(0)
|
||||
logger.add(sys.stderr, level="DEBUG")
|
||||
|
||||
|
||||
async def main(room_url, token):
|
||||
async def main():
|
||||
(room_url, token) = await configure()
|
||||
|
||||
tk_root = tk.Tk()
|
||||
tk_root.title("Local Mirror")
|
||||
|
||||
@@ -62,5 +64,4 @@ async def main(room_url, token):
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
(url, token) = configure()
|
||||
asyncio.run(main(url, token))
|
||||
asyncio.run(main())
|
||||
|
||||
Reference in New Issue
Block a user