vincbeck commented on code in PR #31135:
URL: https://github.com/apache/airflow/pull/31135#discussion_r1188813202
##########
airflow/utils/log/logging_mixin.py:
##########
@@ -32,7 +32,7 @@
# Private: A sentinel objects
class SetContextPropagate(enum.Enum):
- """:meta private:"""
+ """:meta private:."""
Review Comment:
I tried:
```python
class DefaultPolicy: # noqa: D400
""":meta private:"""
```
```python
# noqa: D400
class DefaultPolicy:
""":meta private:"""
```
```python
class DefaultPolicy:
# noqa: D400
""":meta private:"""
```
None of them work. This is weird because there is a precise example of what
we are trying to achieve in [pydocstyle
documentation](http://www.pydocstyle.org/en/2.1.1/usage.html#in-file-configuration).
Question of version maybe?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]