From 87ea2e2e81a51dd2decd6236a4531dfd43a78402 Mon Sep 17 00:00:00 2001 From: github-actions <${GITHUB_ACTOR}@users.noreply.github.com> Date: Sun, 18 Dec 2022 03:16:59 +0000 Subject: [PATCH] Format Python code with psf/black push --- main.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/main.py b/main.py index 6dfb537..e171a20 100644 --- a/main.py +++ b/main.py @@ -72,9 +72,7 @@ if __name__ == "__main__": else: with open(PID_FILE, "w") as f: f.write(str(os.getpid())) - print("" - "Wrote PID to f" - "ile the file "+PID_FILE) + print("" "Wrote PID to f" "ile the file " + PID_FILE) f.close() try: asyncio.get_event_loop().run_until_complete(main()) @@ -87,6 +85,3 @@ if __name__ == "__main__": os.remove(PID_FILE) finally: sys.exit(0) - - -