summaryrefslogtreecommitdiff
path: root/unittests/internaltests.py
diff options
context:
space:
mode:
authorTristan Partin <tristan@partin.io>2023-08-14 17:51:51 -0500
committerEli Schwartz <eschwartz93@gmail.com>2023-10-04 15:23:00 -0400
commit1991ad87061d068413cb6a593f3f29c9426df2b9 (patch)
treef84cc2915a28508b886f5b1408d9449efed31a30 /unittests/internaltests.py
parent88b337b77c264d3f39744b3b3bea8a29778a73c4 (diff)
downloadmeson-1991ad87061d068413cb6a593f3f29c9426df2b9.tar.gz
Remove type comments in run_project_tests.py
Diffstat (limited to 'unittests/internaltests.py')
-rw-r--r--unittests/internaltests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/unittests/internaltests.py b/unittests/internaltests.py
index eb3b1717a..1c55b2976 100644
--- a/unittests/internaltests.py
+++ b/unittests/internaltests.py
@@ -1020,7 +1020,7 @@ class InternalTests(unittest.TestCase):
schema = json.loads(Path('data/test.schema.json').read_text(encoding='utf-8'))
- errors = [] # type: T.Tuple[str, Exception]
+ errors: T.List[T.Tuple[Path, Exception]] = []
for p in Path('test cases').glob('**/test.json'):
try:
validate(json.loads(p.read_text(encoding='utf-8')), schema=schema)