### Environment How do you use Sentry? Sentry SaaS (sentry.io) or self-hosted/on-premise (which version?) **Saas** Which SDK and version? **python-sdk v1.0.0 in Python 3.9** ### Steps to Reproduce In my code, I call ```py sentry_sdk.init(dsn=os.getenv('SENTRY_DSN') ``` I use [pylint](https://github.com/PyCQA/pylint/) that just released a version `2.7.4` to statically check my code for lint errors ### Expected Result No lint error found (that was the case three weeks ago) ### Actual Result I get this pylint error ``` E0110: Abstract class 'init' with abstract methods instantiated (abstract-class-instantiated) ``` I believe this is due to the [stunt](https://github.com/getsentry/sentry-python/blob/19fa43fec5a20b3561a16970ce395c93ac1be57d/sentry_sdk/hub.py#L120) to have nicer autocompletion that is now detected by pylint.