From 9c178391681b2d450a99efea74f925676ad47019 Mon Sep 17 00:00:00 2001 From: rking32 Date: Sat, 9 Jan 2021 13:54:04 +0530 Subject: [PATCH] line too long --- userge/core/methods/utils/restart.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/userge/core/methods/utils/restart.py b/userge/core/methods/utils/restart.py index 6bc419b73..fe729357f 100644 --- a/userge/core/methods/utils/restart.py +++ b/userge/core/methods/utils/restart.py @@ -35,6 +35,7 @@ async def restart(self, update_req: bool = False) -> None: # pylint: disable=ar print(_LOG_STR % c_e) if update_req: print(_LOG_STR % "Installing Requirements...") - os.system("pip3 install -U pip && pip3 install --no-cache-dir -r requirements.txt") # nosec + os.system( + "pip3 install -U pip && pip3 install --no-cache-dir -r requirements.txt") # nosec os.execl(sys.executable, sys.executable, '-m', 'userge') # nosec sys.exit()