diff options
author | TheQwertiest <qwertiest@mail.ru> | 2020-06-11 00:50:43 +0300 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2020-06-12 10:45:30 -0700 |
commit | a43e770071d643edacd69c3ea2801dc7d979884c (patch) | |
tree | 64902d5e38ab01811e4a3ca3aa3ddd22724c9dea /mesonbuild/mintro.py | |
parent | f1288ac7ec28363ba71c6db8065c8723e911e28c (diff) | |
download | meson-a43e770071d643edacd69c3ea2801dc7d979884c.zip meson-a43e770071d643edacd69c3ea2801dc7d979884c.tar.gz meson-a43e770071d643edacd69c3ea2801dc7d979884c.tar.bz2 |
mintro: typing fix
Diffstat (limited to 'mesonbuild/mintro.py')
-rw-r--r-- | mesonbuild/mintro.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/mintro.py b/mesonbuild/mintro.py index 5984e14..f42feec 100644 --- a/mesonbuild/mintro.py +++ b/mesonbuild/mintro.py @@ -53,7 +53,7 @@ class IntroCommand: def get_meson_introspection_types(coredata: T.Optional[cdata.CoreData] = None, builddata: T.Optional[build.Build] = None, backend: T.Optional[backends.Backend] = None, - sourcedir: T.Optional[str] = None) -> T.Dict[str, IntroCommand]: + sourcedir: T.Optional[str] = None) -> T.OrderedDict[str, IntroCommand]: if backend and builddata: benchmarkdata = backend.create_test_serialisation(builddata.get_benchmarks()) testdata = backend.create_test_serialisation(builddata.get_tests()) |