From df7d45b8d84fb6c9796fd442aca11fa227a05fc5 Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Thu, 10 Dec 2020 10:00:37 +0100 Subject: [PATCH] renamed startup_environments with get_global_environments --- pype/modules/base.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pype/modules/base.py b/pype/modules/base.py index 18e1dacbbe..a6ae89184f 100644 --- a/pype/modules/base.py +++ b/pype/modules/base.py @@ -39,6 +39,9 @@ class PypeModule: return self._id @abstractmethod - def startup_environments(self): - """Get startup environments for module.""" + def get_global_environments(self): + """Get global environments values of module. + + Environment variables that can be get only from system settings. + """ return {}