MattSom
MattSom
> If you need something, instead of complaining, just submit PR. It is called feedback. Edit: Anyway my solution is not appropriate/clean enough to submit as a PR since the...
Fresh Ubuntu 22.04 install. Same issue.
A solution for blocks or class annotation would come in handy. Mypy can't handle things going on inside django ORM constraint definitions.
```python credentials = ( app.config.get("SP_CLIENT_ID"), app.config.get("SP_CLIENT_SECRET"), ) token_backend = FileSystemTokenBackend( token_path=app.config.get("SP_TOKEN_PATH"), token_filename=app.config.get("SP_TOKEN_FILE"), ) account = Account( credentials=credentials, auth_flow_type="credentials", token_backend=token_backend, tenant_id=app.config.get("SP_TENANT_ID"), ) site = account.sharepoint().get_site(app.config.get("SP_SITE_ID")) drive = site.list_document_libraries()[0] drive.get_items() ``` The...
For me as well: Abstract class 'ExcelWriter' with abstract methods instantiated