You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The file pycgmClusters.py contains one function, calcFramesClusters which imports a function from clusterCalc.py named groupInClustDict that does not exist.
On line 15, the function is imported: from .clusterCalc import targetName, getMarkerLocation, targetDict, groupInClustDict ,getStaticTransform
On line 18, the function is used: clusters = groupInClustDict()
The text was updated successfully, but these errors were encountered:
niravkin
changed the title
pycgmClusters.py imports and uses a non-existent function
pyCGM_Single/pycgmClusters.py imports and uses a non-existent function
Oct 5, 2020
clusterCalc.py is also imported in Pipelines.py, but only using existing functions: from .clusterCalc import targetName,getMarkerLocation,segment_dict,target_dict,getStaticTransform
The file pycgmClusters.py contains one function,
calcFramesClusters
which imports a function from clusterCalc.py namedgroupInClustDict
that does not exist.On line 15, the function is imported:
from .clusterCalc import targetName, getMarkerLocation, targetDict, groupInClustDict ,getStaticTransform
On line 18, the function is used:
clusters = groupInClustDict()
The text was updated successfully, but these errors were encountered: