coredata: fix annotations of get_option

pull/10043/head
Dylan Baker 3 years ago
parent f4ae32c2ad
commit 5f595f0d1b
  1. 2
      mesonbuild/coredata.py

@ -613,7 +613,7 @@ class CoreData:
'Default project to execute in Visual Studio',
'')
def get_option(self, key: OptionKey) -> T.Union[str, int, bool, WrapMode]:
def get_option(self, key: OptionKey) -> T.Union[T.List[str], str, int, bool, WrapMode]:
try:
v = self.options[key].value
if key.name == 'wrap_mode':

Loading…
Cancel
Save