From 2ae1bfa17b194fca328756f8d80cbef089d42673 Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Wed, 27 Mar 2024 10:48:27 -0700 Subject: [PATCH] interpreter/type_checking: remove stale TODO comment --- mesonbuild/interpreter/type_checking.py | 1 - 1 file changed, 1 deletion(-) diff --git a/mesonbuild/interpreter/type_checking.py b/mesonbuild/interpreter/type_checking.py index 2ec7d58ce..1256495d1 100644 --- a/mesonbuild/interpreter/type_checking.py +++ b/mesonbuild/interpreter/type_checking.py @@ -285,7 +285,6 @@ DEPEND_FILES_KW: KwargInfo[T.List[T.Union[str, File]]] = KwargInfo( COMMAND_KW: KwargInfo[T.List[T.Union[str, BuildTarget, CustomTarget, CustomTargetIndex, ExternalProgram, File]]] = KwargInfo( 'command', - # TODO: should accept CustomTargetIndex as well? ContainerTypeInfo(list, (str, BuildTarget, CustomTarget, CustomTargetIndex, ExternalProgram, File), allow_empty=False), required=True, listify=True,