build: Fix CustomTarget initializer annotation

the `output` parameter is a string, not an int.
pull/9143/head
Dylan Baker 3 years ago committed by Daniel Mensinger
parent e08f896802
commit d754ee1a7f
  1. 2
      mesonbuild/build.py

@ -2567,7 +2567,7 @@ class CustomTargetIndex(HoldableObject):
the sources.
"""
def __init__(self, target: CustomTarget, output: int):
def __init__(self, target: CustomTarget, output: str):
self.typename = 'custom'
self.target = target
self.output = output

Loading…
Cancel
Save