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/uninstall.py | |
parent | 4edf9a7f554f183ccc34b0e57e734a2cbd6f5b9d (diff) |
run autopep8 on the code
Diffstat (limited to 'src/backend/uninstall.py')
-rw-r--r-- | src/backend/uninstall.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/uninstall.py b/src/backend/uninstall.py index 4c54d7b..23cd2c5 100644 --- a/src/backend/uninstall.py +++ b/src/backend/uninstall.py @@ -35,8 +35,8 @@ def fstart(pkgname): def xstart(pkgname): - p_exe = subprocess.Popen( - ['emerge', '--depclean'] + pkgname, stdout=subprocess.PIPE, stderr=subprocess.PIPE) + p_exe = subprocess.Popen(['emerge', '--depclean'] + pkgname, + stdout=subprocess.PIPE, stderr=subprocess.PIPE) # kill portage if the program dies or it's terminated by the user atexit.register(sisyphus.killemerge.start, p_exe) |