Skip to content

Commit ddb2c43

Browse files
authored
ruff compliance for D417, D106 (#5677)
* ruff compliance for D106. * ruff compliance for D106. * ruff compliance for D417 and D104.
1 parent ccd4c48 commit ddb2c43

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.ruff.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,8 @@ lint.ignore = [
2525
# (D-1) Permanent
2626
"D105", # Missing docstring in magic method
2727
# (D-2) Temporary, to be removed when we are more compliant. Rare cases mmove to (1).
28-
"D417", # Missing argument descriptions in the docstring
2928
"D101", # Missing docstring in public class
3029
"D102", # Missing docstring in public method
31-
"D104", # Missing docstring in public package
3230
# (D-3) Temporary, before an initial review, either fix ocurrences or move to (2).
3331
"D100", # Missing docstring in public module
3432
"D103", # Missing docstring in public function

docs/gallery_tests/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@
22
#
33
# This file is part of Iris and is released under the BSD license.
44
# See LICENSE in the root of the repository for full licensing details.
5+
6+
"""Gallery Tests."""
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# noqa: D104

0 commit comments

Comments
 (0)