From 484a7b7c278f01cf5a7061b9e07978c3b6f6fed9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Vinot?= Date: Mon, 21 Jun 2021 11:18:15 -0700 Subject: [PATCH] chg: Make mypy happy --- unique_uuid.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/unique_uuid.py b/unique_uuid.py index 349447d..74be30a 100755 --- a/unique_uuid.py +++ b/unique_uuid.py @@ -3,8 +3,9 @@ from glob import glob import json +from typing import Dict -all_uuids = {} +all_uuids: Dict[str, str] = {} for definition in glob('./objects/*/definition.json'): with open(definition, 'r') as f: d = json.load(f)