Skip to content

Commit

Permalink
Temporarily disable missing-type-doc lint rule.
Browse files Browse the repository at this point in the history
  • Loading branch information
dhermes committed Nov 29, 2021
1 parent 8488d64 commit e6925aa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"numpy": "numpy >= 1.21.4",
"pycobertura": "pycobertura >= 2.1.0",
"Pygments": "Pygments",
"pylint": "pylint >= 2.11.1",
"pylint": "pylint >= 2.12.1",
"pytest": "pytest >= 6.2.5",
"pytest-cov": "pytest-cov",
"scipy": "scipy >= 1.7.2",
Expand Down Expand Up @@ -391,6 +391,7 @@ def lint(session):
"--rcfile",
"pylintrc",
"--max-module-lines=3035",
"--disable=missing-type-doc",
get_path("src", "python", "bezier"),
)
# Run Pylint over the tests source.
Expand Down
2 changes: 1 addition & 1 deletion src/python/bezier/_plot_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def add_patch(ax, color, pts_per_edge, *edges):
color (Tuple[float, float, float]): Color as RGB profile.
pts_per_edge (int): Number of points to use in polygonal
approximation of edge.
edges (Tuple[~bezier.curve.Curve, ...]): Curved edges defining
*edges (Tuple[~bezier.curve.Curve, ...]): Curved edges defining
a boundary.
"""
# pylint: disable=import-outside-toplevel
Expand Down

0 comments on commit e6925aa

Please sign in to comment.