From 4966a776edbec6650938dc2c38d851611655ffaf Mon Sep 17 00:00:00 2001 From: "flyingscorpio@arch-desktop" Date: Sat, 5 Sep 2020 16:17:17 +0200 Subject: [PATCH] Start adding decorator --- install.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/install.py b/install.py index 070b3f7..ad6f0a7 100755 --- a/install.py +++ b/install.py @@ -15,6 +15,10 @@ from path import Path # type: ignore from ruamel.yaml import YAML # type: ignore +def to_hide_or_not_to_hide() -> None: + """Decorator to handle output suppression of subprocess.run()""" + + class Installer: """Regroups all the installation methods listed in the yaml conf file."""