diff options
| author | Dylan Baker <dylan@pnwbakers.com> | 2025-10-24 09:27:50 -0700 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2025-12-17 14:47:18 -0800 |
| commit | 5363fc1310d793e738c2bb4868aa24e37a5d880f (patch) | |
| tree | 12c2301430e43f3e62a2d78735570a5c9ef45cbd /mesonbuild | |
| parent | 6f3d0ddd823cc0ac49634c353ebdac403dd4c799 (diff) | |
| download | meson-5363fc1310d793e738c2bb4868aa24e37a5d880f.tar.gz | |
dependencies/framework: remove useless stringlistify call
We have type checking that ensures this is a string list already.
Diffstat (limited to 'mesonbuild')
| -rw-r--r-- | mesonbuild/dependencies/framework.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/dependencies/framework.py b/mesonbuild/dependencies/framework.py index 1f5646682..627e43b52 100644 --- a/mesonbuild/dependencies/framework.py +++ b/mesonbuild/dependencies/framework.py @@ -4,7 +4,7 @@ from __future__ import annotations from .base import DependencyTypeName, ExternalDependency, DependencyException -from ..mesonlib import MesonException, Version, stringlistify +from ..mesonlib import MesonException, Version from .. import mlog from pathlib import Path import typing as T @@ -19,7 +19,7 @@ class ExtraFrameworkDependency(ExternalDependency): type_name = DependencyTypeName('extraframeworks') def __init__(self, name: str, env: 'Environment', kwargs: DependencyObjectKWs, language: T.Optional[str] = None) -> None: - paths = stringlistify(kwargs.get('paths', [])) + paths = kwargs.get('paths', []) super().__init__(name, env, kwargs, language=language) # Full path to framework directory self.framework_path: T.Optional[str] = None |
