Clockwork missing nodes

My Clockwork does not have all the nodes, even though I just reinstalled latest version.
For example View.IsViewTemplate+ is missing.
Any advice?

1 Like

I am using 2.3.0 and i have the Node,

But

Here is code,

import clr
clr.AddReference('RevitAPI')
from Autodesk.Revit.DB import *

views = UnwrapElement(IN[0])
elementlist = list()
notaview = list()
for view in views:
	try:
		if view.IsTemplate:
			elementlist.append(True)
		else:
			elementlist.append(False)
	except:
		elementlist.append(False)
OUT = elementlist

1 Like

Iā€™d get rid of Bakery and reinstall clockwork after. It has dependencies on some packages (including clockwork) and is large in part unsupported these days. Could be other packages too, looks like you have quite a lot installed.