mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
formatting fixes
This commit is contained in:
parent
74443c92e7
commit
1d7036ffed
1 changed files with 4 additions and 4 deletions
|
|
@ -295,7 +295,7 @@ def merge_env_variables(
|
|||
src_env: dict[str, str],
|
||||
dst_env: dict[str, str],
|
||||
missing_template: Optional[str] = None,
|
||||
):
|
||||
) -> dict[str, str]:
|
||||
"""Merge the tools environment with the 'current_env'.
|
||||
|
||||
This finalizes the join with a current environment by formatting the
|
||||
|
|
@ -307,11 +307,11 @@ def merge_env_variables(
|
|||
src_env (dict): The dynamic environment
|
||||
dst_env (dict): The target environment variables mapping to merge
|
||||
the dynamic environment into.
|
||||
missing_template (str): Argument passed to '_partial_format' during merging.
|
||||
`None` should keep missing keys unchanged.
|
||||
missing_template (str): Argument passed to '_partial_format' during
|
||||
merging. `None` should keep missing keys unchanged.
|
||||
|
||||
Returns:
|
||||
dict: The resulting environment after the merge.
|
||||
dict[str, str]: The resulting environment after the merge.
|
||||
|
||||
"""
|
||||
result = dst_env.copy()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue