Skip to content

Commit ef3b125

Browse files
fixed config, updated version and default project
1 parent ac0e660 commit ef3b125

File tree

5 files changed

+2
-1
lines changed

5 files changed

+2
-1
lines changed

FNS_TDDefault_2023.toe

6.71 KB
Binary file not shown.
-48 Bytes
Binary file not shown.
-64 Bytes
Binary file not shown.
16 Bytes
Binary file not shown.

scripts/FNS_Config/ExtFNSConfig.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ def SaveAllToJSON(self):
3232
full_data = {}
3333
full_data['op.FNS'] = TDJSON.opToJSONOp(op.FNS, forceAttrLists=False, extraAttrs=self.extraAttrs)
3434
for _op in parent.FNS.findChildren(depth=1, key=lambda x: x.family == 'COMP' and not x.type in ['annotate','comment','network']):
35-
full_data[f"op.FNS.op('{_op.name}')"] = TDJSON.opToJSONOp(op.FNS.op(_op.name), forceAttrLists=False, extraAttrs=self.extraAttrs)
35+
if _op is not None:
36+
full_data[f"op.FNS.op('{_op.name}')"] = TDJSON.opToJSONOp(_op, forceAttrLists=False, extraAttrs=self.extraAttrs)
3637

3738
filtered_data = self.filter_keys_from_second_level(full_data, self.exceptions)
3839
self.toFile(filtered_data)

0 commit comments

Comments
 (0)