'pybert' has no attribute 'createData'
```
import numpy as np
import pygimli as pg
import pygimli.meshtools as mt
import pybert as pb
scheme = pb.createData(elecs=pg.utils.grange(start=0, end=25, dx=1.0),
schemeName='dd')
Error: AttributeError: module 'pybert' has no attribute 'createData'
```
I recently installed via anaconda both pygimli then pybert (version 1.3.1 and 2.4.0, respectively) and running them via python 3.8.15. I keep getting errors that my pybert doesn't have the attributes.
I could fix it if I don't actually use pybert but simply import the function as:
import pygimli.physics.ert as ert1
```
scheme = ert1.createData(elecs=pg.utils.grange(start=0, end=25, dx=1.0),
schemeName='dd')
```
Would it mean that importing pybert and using its functions no longer works? And pygimli has all its functions?
Thank you
(for a project of Crosshole ert measurements)
issue