From ba9430ea5e26815b02ef02e87209d07c0515a6d8 Mon Sep 17 00:00:00 2001 From: Irene Bandera Date: Fri, 9 Jun 2023 10:16:00 +0200 Subject: [PATCH] Fix python linter Signed-off-by: Irene Bandera --- py_utils/py_utils/system/system_utils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/py_utils/py_utils/system/system_utils.py b/py_utils/py_utils/system/system_utils.py index 027f2eb4..f92c946e 100644 --- a/py_utils/py_utils/system/system_utils.py +++ b/py_utils/py_utils/system/system_utils.py @@ -18,6 +18,7 @@ import os + def is_linux() -> bool: """ @brief Check if the script is running in a Linux environment. @@ -26,6 +27,7 @@ def is_linux() -> bool: """ return os.name == 'posix' + def is_windows() -> bool: """ @brief Check if the script is running in a Windows environment.