From 007e7076c7404c86180ff3aa6ea3fe15024a87c3 Mon Sep 17 00:00:00 2001 From: chqn Date: Wed, 3 Jan 2024 13:12:48 -0600 Subject: Refactored function signatures and added some TODOs --- src/update_polybar.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/update_polybar.py') diff --git a/src/update_polybar.py b/src/update_polybar.py index 2ea16af..2c1a3e0 100644 --- a/src/update_polybar.py +++ b/src/update_polybar.py @@ -1,6 +1,6 @@ -def updatePolybarTheme(config_path: str, colors: list, compliments: list): +def updatePolybarTheme(config_path: str, colors: list, compliments: list) -> None: print('[bold red]Updating polybar color scheme') data = '' with open(config_path, 'r') as file: @@ -22,3 +22,5 @@ def updatePolybarTheme(config_path: str, colors: list, compliments: list): with open(config_path, 'w') as file: file.writelines(data) +def initializePolybarConfig(config_path: str) -> None: + pass -- cgit v1.2.3