summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@qt.io>2019-04-04 10:38:13 +0200
committerTobias Hunger <tobias.hunger@qt.io>2019-04-09 07:27:59 +0000
commit9365a015316d3eb663c36c25b2c391b38050b77f (patch)
tree4ebe0e9ef5d90e5816e7ccef29a5f65ddd0692c1 /util
parent81542ffb91c9139f67386bc08aac6cf75218e0b4 (diff)
CMake: pro2cmake.py: Fix typing information
Change-Id: Iaa6ea69c3c72eb1b626a976fcdb16243f15c609e Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
Diffstat (limited to 'util')
-rwxr-xr-xutil/cmake/pro2cmake.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/cmake/pro2cmake.py b/util/cmake/pro2cmake.py
index 6e1f609514..e3afce9c1b 100755
--- a/util/cmake/pro2cmake.py
+++ b/util/cmake/pro2cmake.py
@@ -92,7 +92,7 @@ def process_qrc_file(target: str, filepath: str, base_dir: str = '') -> str:
full_resource_name = resource_name + (str(resource_count) if resource_count > 0 else '')
- files: Dict[str, str] = {}
+ files: typing.Dict[str, str] = {}
for file in resource:
path = file.text
assert path