html_url,issue_url,id,node_id,user,created_at,updated_at,author_association,body,reactions,performed_via_github_app,issue
https://github.com/pydata/xarray/pull/4532#issuecomment-716221826,https://api.github.com/repos/pydata/xarray/issues/4532,716221826,MDEyOklzc3VlQ29tbWVudDcxNjIyMTgyNg==,14808389,2020-10-25T22:20:35Z,2020-10-25T22:20:35Z,MEMBER,"> is that `DataArray.units` doesn't exist
it doesn't, but `napoleon` doesn't check whether the manually declared attributes actually exist. The issue is that the string
```
Attributes:
description: Ambient temperature.
units: degC
```
appears twice which makes `napoleon` with a enabled `googledoc` generate two `Attributes` sections. It is weird that `description:` doesn't trigger the same warning as `units:`, though.","{""total_count"": 0, ""+1"": 0, ""-1"": 0, ""laugh"": 0, ""hooray"": 0, ""confused"": 0, ""heart"": 0, ""rocket"": 0, ""eyes"": 0}",,728782405
https://github.com/pydata/xarray/pull/4532#issuecomment-716218968,https://api.github.com/repos/pydata/xarray/issues/4532,716218968,MDEyOklzc3VlQ29tbWVudDcxNjIxODk2OA==,14808389,2020-10-25T21:59:30Z,2020-10-25T21:59:30Z,MEMBER,"my guess is that `Attributes:` is picked up by the google-style parser, which is enabled by default. To fix that, we could try to explicitly enable numpydoc and disable the googledoc parser in `conf.py`:
```python
napoleon_numpy_docstring = True
napoleon_google_docstring = False
```
","{""total_count"": 0, ""+1"": 0, ""-1"": 0, ""laugh"": 0, ""hooray"": 0, ""confused"": 0, ""heart"": 0, ""rocket"": 0, ""eyes"": 0}",,728782405