diff options
| author | Dylan Baker <dylan@pnwbakers.com> | 2024-07-23 14:12:35 -0700 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2024-07-23 14:12:35 -0700 |
| commit | f76f9ddf28f16704b9d91066f6cc151fc78329e1 (patch) | |
| tree | b9a377a2c459260e0f1184bde53969d27d0a93db | |
| parent | 93f5ceb9eebfee229c15b31b935d8df6ad642a0b (diff) | |
| download | meson-f76f9ddf28f16704b9d91066f6cc151fc78329e1.tar.gz | |
depfixer: Add missing annotation that breaks mypy check
| -rw-r--r-- | mesonbuild/scripts/depfixer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/scripts/depfixer.py b/mesonbuild/scripts/depfixer.py index 641689f93..db9c97d98 100644 --- a/mesonbuild/scripts/depfixer.py +++ b/mesonbuild/scripts/depfixer.py @@ -386,7 +386,7 @@ def get_darwin_rpaths(fname: str) -> OrderedSet[str]: # Need to deduplicate rpaths, as macOS's install_name_tool # is *very* allergic to duplicate -delete_rpath arguments # when calling depfixer on installation. - result = OrderedSet() + result: OrderedSet[str] = OrderedSet() current_cmd = 'FOOBAR' for line in out.split('\n'): line = line.strip() |
