Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable pydocstyle for all packages. #10759

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,7 @@ repos:
conda|
docs|
java|
notebooks|
python/dask_cudf|
python/cudf_kafka|
python/custreamz|
python/cudf/cudf/tests
notebooks
)
- repo: https://github.com/pre-commit/mirrors-clang-format
rev: v11.1.0
Expand Down
2 changes: 1 addition & 1 deletion python/.flake8
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ ignore =
# unlike the match option above this match-dir will have no effect when
# pydocstyle is invoked from pre-commit. Therefore this exclusion list must
# also be maintained in the pre-commit config file.
match-dir = ^(?!(ci|cpp|conda|docs|java|notebooks|dask_cudf|cudf_kafka|custreamz|tests)).*$
match-dir = ^(?!(ci|cpp|conda|docs|java|notebooks)).*$
# Allow missing docstrings for docutils
ignore-decorators = .*(docutils|doc_apply|copy_docstring).*
select =
Expand Down
2 changes: 1 addition & 1 deletion python/custreamz/custreamz/kafka.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def read_gdf(
message_format="json",
):

"""
r"""
Read messages from the underlying KafkaDatasource connection and create
a cudf Dataframe

Expand Down