[core] plugins: Add direct accessor for the process env dictionary

This commit is contained in:
Candice Bentéjac 2025-06-12 15:30:50 +02:00
parent 1d96ca090b
commit 0efc6c3d2f

View file

@ -368,6 +368,11 @@ class NodePlugin(BaseObject):
return self.plugin.processEnv
return None
@property
def runtimeEnv(self) -> dict:
""" Return the environment dictionary for the runtime. """
return self.processEnv.getEnvDict()
class NodePluginManager(BaseObject):
"""