diff options
author | V3n3RiX <venerix@koprulu.sector> | 2023-03-11 05:32:19 +0000 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2023-03-11 05:32:19 +0000 |
commit | a9d87ee5bd0c98b6daae9ddf307c634da9c35551 (patch) | |
tree | 3ae25a65b1511d7a9368fa21b4779a6880a132b7 /src/backend/syncenv.py | |
parent | 4edf9a7f554f183ccc34b0e57e734a2cbd6f5b9d (diff) |
run autopep8 on the code
Diffstat (limited to 'src/backend/syncenv.py')
-rw-r--r-- | src/backend/syncenv.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/backend/syncenv.py b/src/backend/syncenv.py index e27d9ef..25b418e 100644 --- a/src/backend/syncenv.py +++ b/src/backend/syncenv.py @@ -16,8 +16,8 @@ def g_repo(): lcl_brch.decode().strip().split() + ['--quiet'], stdout=subprocess.PIPE) g_exe1.wait() - g_exe2 = subprocess.Popen(['git', 'reset', '--hard'] + rmt_brch.decode( - ).strip().replace('refs/remotes/', '').split() + ['--quiet'], stdout=subprocess.PIPE) + g_exe2 = subprocess.Popen(['git', 'reset', '--hard'] + rmt_brch.decode().strip( + ).replace('refs/remotes/', '').split() + ['--quiet'], stdout=subprocess.PIPE) g_exe2.wait() @@ -32,8 +32,8 @@ def r_repo(): lcl_brch.decode().strip().split() + ['--quiet'], stdout=subprocess.PIPE) g_exe1.wait() - g_exe2 = subprocess.Popen(['git', 'reset', '--hard'] + rmt_brch.decode( - ).strip().replace('refs/remotes/', '').split() + ['--quiet'], stdout=subprocess.PIPE) + g_exe2 = subprocess.Popen(['git', 'reset', '--hard'] + rmt_brch.decode().strip( + ).replace('refs/remotes/', '').split() + ['--quiet'], stdout=subprocess.PIPE) g_exe2.wait() @@ -49,8 +49,8 @@ def p_cfg_repo(): g_exe2 = subprocess.Popen(['git', 'fetch', '--depth=1', 'origin'] + lcl_brch.decode().strip().split() + ['--quiet'], stdout=subprocess.PIPE) g_exe2.wait() - g_exe3 = subprocess.Popen(['git', 'reset', '--hard'] + rmt_brch.decode( - ).strip().replace('refs/remotes/', '').split() + ['--quiet'], stdout=subprocess.PIPE) + g_exe3 = subprocess.Popen(['git', 'reset', '--hard'] + rmt_brch.decode().strip( + ).replace('refs/remotes/', '').split() + ['--quiet'], stdout=subprocess.PIPE) g_exe3.wait() g_exe4 = subprocess.Popen( ['git', 'stash', 'apply'], stdout=subprocess.PIPE) |