backend/backends: Add type annotations to CleanTrees

pull/9143/head
Dylan Baker 3 years ago committed by Daniel Mensinger
parent 2664153d24
commit 9fb19ed923
  1. 2
      mesonbuild/backend/backends.py

@ -88,7 +88,7 @@ class CleanTrees:
Directories outputted by custom targets that have to be manually cleaned
because on Linux `ninja clean` only deletes empty directories.
'''
def __init__(self, build_dir, trees):
def __init__(self, build_dir: str, trees: T.List[str]):
self.build_dir = build_dir
self.trees = trees

Loading…
Cancel
Save