Merge branch 'feature-exclusive'
commit
07fa7a0553
|
@ -11,7 +11,9 @@ TAXONOMY_ROOT_PATH = Path(__file__).resolve().parent.parent
|
|||
def fetchTaxonomies():
|
||||
taxonomiesFolder = TAXONOMY_ROOT_PATH
|
||||
taxonomies = []
|
||||
for taxonomyFile in taxonomiesFolder.glob('./*/machinetag.json'):
|
||||
allTaxonomies = list(taxonomiesFolder.glob('./*/machinetag.json'))
|
||||
allTaxonomies.sort()
|
||||
for taxonomyFile in allTaxonomies:
|
||||
with open(taxonomyFile) as f:
|
||||
taxonomy = json.load(f)
|
||||
taxonomies.append(taxonomy)
|
||||
|
|
|
@ -11,7 +11,9 @@ TAXONOMY_ROOT_PATH = Path(__file__).resolve().parent.parent
|
|||
def fetchTaxonomies():
|
||||
taxonomiesFolder = TAXONOMY_ROOT_PATH
|
||||
taxonomies = []
|
||||
for taxonomyFile in taxonomiesFolder.glob('./*/machinetag.json'):
|
||||
allTaxonomies = list(taxonomiesFolder.glob('./*/machinetag.json'))
|
||||
allTaxonomies.sort()
|
||||
for taxonomyFile in allTaxonomies:
|
||||
with open(taxonomyFile) as f:
|
||||
taxonomy = json.load(f)
|
||||
taxonomies.append(taxonomy)
|
||||
|
|
Loading…
Reference in New Issue