Merge branch 'main' of github.com:MISP/misp-objects into main

pull/321/head v2.4.145
Alexandre Dulaunoy 2021-06-22 15:25:14 +02:00
commit 01168e43ea
No known key found for this signature in database
GPG Key ID: 09E2CD4944E6CBCD
1 changed files with 2 additions and 1 deletions

View File

@ -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)