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
Hello,
I've recently pulled the repo and got a new error : 'SbfData' object has no attribute 'pc'.
It occurs in the function load_sbf_features (file cc_3dmasc.py) line 87 : pc = sbf_data.pc
I've tried debbuging but couldn't fix it, the sceenshot shows the sbf_data object I have
Thanks for your help !
The text was updated successfully, but these errors were encountered:
The message is quite explicit, 'SbfData' object has no attribute 'pc'. Looking at the history of commits, you can find the day this field name was changed. Anyway, pc has been renamed xyz. Can you please try to replace
pc = sbf_data.pc
with
pc = sbf_data.xyz
If it works, I will commit the modification.
Hello,
I've recently pulled the repo and got a new error : 'SbfData' object has no attribute 'pc'.
It occurs in the function load_sbf_features (file cc_3dmasc.py) line 87 : pc = sbf_data.pc
I've tried debbuging but couldn't fix it, the sceenshot shows the sbf_data object I have
Thanks for your help !
The text was updated successfully, but these errors were encountered: