Remove some debug prints

This commit is contained in:
Rikko 2022-09-16 03:59:44 +05:30
parent 2a70e273e1
commit c48ad15ca5

View file

@ -2089,24 +2089,3 @@ class EntryPoint(ba.Plugin):
startup_tasks = StartupTasks() startup_tasks = StartupTasks()
loop = asyncio.get_event_loop() loop = asyncio.get_event_loop()
loop.create_task(startup_tasks.execute()) loop.create_task(startup_tasks.execute())
# loop = asyncio.get_event_loop()
# loop.create_task(do())
# pm = PluginManager()
# pm.plugin_index()
def on_app_pause(self) -> None:
"""Called after pausing game activity."""
print("pause")
def on_app_resume(self) -> None:
"""Called after the game continues."""
print("resume")
def on_app_shutdown(self) -> None:
"""Called before closing the application."""
print("shutdown")
# print(ba.app.config["Community Plugin Manager"])
# with open(_env["config_file_path"], "r") as fin:
# c = fin.read()
# import json
# print(json.loads(c)["Community Plugin Manager"])