@@ -124,7 +124,7 @@ lint.ignore = [
124124 " D100" , # Missing docstring in public module
125125 " ANN401" , # typing.Any are disallowed in `**kwargs
126126 " PLR0913" , # Too many arguments for function call
127- " D106" , # Missing docstring in public nested class
127+ " D106" , # Missing docstring in public nested class
128128]
129129exclude = [" .venv/" ]
130130line-length = 88
@@ -134,12 +134,12 @@ max-complexity = 10
134134
135135[tool .ruff .lint .per-file-ignores ]
136136"tests/*" = [
137- " S101" , # Use of assert detected
138- " S301" , # Use of pickle detected
139- " D103" , # Missing docstring in public function
137+ " S101" , # Use of assert detected
138+ " S301" , # Use of pickle detected
139+ " D103" , # Missing docstring in public function
140140 " SLF001" , # Private member accessed
141- " S311" , # Standard pseudo-random generators are not suitable for security/cryptographic purposes
142- " D101" , # Missing docstring in public class
141+ " S311" , # Standard pseudo-random generators are not suitable for security/cryptographic purposes
142+ " D101" , # Missing docstring in public class
143143]
144144
145145[tool .ruff .lint .pydocstyle ]
0 commit comments