Hello Pedro,
First of all, thank you for this. I've been watching your videos for a while now and I can't thank you enough for what you and your team have done. I live in Canada, but I teach in a university in the Dominican Republic. This semester I wanted to teach the students how to model, but it's hard when the university doesn't have the resources and the students don't receive any type of coding courses, so it's easier for me to teach them using open source tools like QGIS.
I solved the problem by fixing the "File.py". I change the following lines:
- "class File(tables.file):" for "class File(tables.File):";
- And the _init_ for:
def __init__(self, filename, mode='r', title='', rootUEP='/', filters=None, **kwargs):
super().__init__(filename, mode=mode, title=title, root_uep=rootUEP, filters=filters, **kwargs)
self._shape = None
After that and for now, the plugin is working fine.
Thanks once again.