Remove local import of json

CURA-7005
This commit is contained in:
Jaime van Kessel 2020-01-20 15:30:23 +01:00
parent 712cebcdd2
commit bee641da5a
No known key found for this signature in database
GPG key ID: 3710727397403C91

View file

@ -4,6 +4,7 @@
from configparser import ConfigParser
import zipfile
import os
import json
from typing import cast, Dict, List, Optional, Tuple, Any
import xml.etree.ElementTree as ET
@ -739,7 +740,6 @@ class ThreeMFWorkspaceReader(WorkspaceReader):
archive = zipfile.ZipFile(file_name, "r")
metadata_files = [name for name in archive.namelist() if name.endswith("plugin_metadata.json")]
import json
result = dict()