pygoov

Results 2 comments of pygoov

I faced the same issue with pylance. This problem occurs because pylance does not see the file **\_\_init\_\_.py** in the **/opentelemetry/** folder. If you add an file **\_\_init\_\_.py** to the...

Instead of not including the `__init__.py` file, you can include it with uses a [pkgutil-style](https://packaging.python.org/en/latest/guides/packaging-namespace-packages/#pkgutil-style-namespace-packages). Most likely this will solve this problem and it is recommended in the documentation itself....