diff --git a/src/rez_pip/pip.py b/src/rez_pip/pip.py index 2dd3366..ce49915 100644 --- a/src/rez_pip/pip.py +++ b/src/rez_pip/pip.py @@ -146,5 +146,5 @@ def _readPipReport(reportPath: str) -> typing.Dict[typing.Any, typing.Any]: Retrieve the json report generated by pip as json dict object. """ with open(reportPath, "r", encoding="utf-8") as reportFile: - reportContent = json.load(reportFile) + reportContent: typing.Dict[typing.Any, typing.Any] = json.load(reportFile) return reportContent