From 06025eed3647ea1bfde2daefa4710309036b0cb9 Mon Sep 17 00:00:00 2001 From: dineshbaburam91 Date: Wed, 10 Apr 2024 12:59:57 +0530 Subject: [PATCH] Fixed python style format --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 062cd50d0..05bd9506c 100755 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ import os # Install customer paramiko -os.system('pip install git+https://github.com/Juniper/paramiko.git') +os.system("pip install git+https://github.com/Juniper/paramiko.git") # parse requirements req_lines = [line.strip() for line in open("requirements.txt").readlines()] install_reqs = list(filter(None, req_lines))