diff options
| author | Dylan Baker <dylan@pnwbakers.com> | 2025-03-04 13:49:06 -0800 |
|---|---|---|
| committer | Eli Schwartz <eschwartz93@gmail.com> | 2025-03-06 23:02:04 -0500 |
| commit | 3df6762f542a8bd6506a96bb2690a3d91d1a5ebc (patch) | |
| tree | ae338c6228fa9a3d0dfccebaa95bffab754b44af /mesonbuild/environment.py | |
| parent | f64cda3d80f34db42cc59fefd3abbe904fc3231a (diff) | |
| download | meson-3df6762f542a8bd6506a96bb2690a3d91d1a5ebc.tar.gz | |
environment: fix nullability of function parameter
Diffstat (limited to 'mesonbuild/environment.py')
| -rw-r--r-- | mesonbuild/environment.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/environment.py b/mesonbuild/environment.py index 516966678..da29d6c3c 100644 --- a/mesonbuild/environment.py +++ b/mesonbuild/environment.py @@ -702,7 +702,7 @@ class Environment: # Store a global state of Cargo dependencies self.cargo: T.Optional[cargo.Interpreter] = None - def mfilestr2key(self, machine_file_string: str, section_subproject: str, machine: MachineChoice) -> OptionKey: + def mfilestr2key(self, machine_file_string: str, section_subproject: T.Optional[str], machine: MachineChoice) -> OptionKey: key = OptionKey.from_string(machine_file_string) assert key.machine == MachineChoice.HOST if key.subproject: |
