Skip to content

Commit

Permalink
DO a whole bunch of docs fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Pasarus committed Jan 7, 2025
1 parent d9e0e5f commit 16787ee
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ ignore = [
"ISC001", # Conflicts with the formatter
"COM812", # Conflicts with the formatter
"D211", # Conflicts with it's own rules: D203
"D205", "D212", "D400", "D415" # Overzealous docstring checker
"D104", "D205", "D212", "D400", "D415" # Overzealous docstring checker
]

[tool.ruff.lint.pylint]
Expand Down
2 changes: 1 addition & 1 deletion test/test_auth.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ruff: noqa: D103
# ruff: noqa: D100, D103
from http import HTTPStatus
from unittest.mock import Mock, patch

Expand Down
2 changes: 1 addition & 1 deletion test/test_roles.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ruff: noqa: D103
# ruff: noqa: D100, D103
import os
import random
from http import HTTPStatus
Expand Down
2 changes: 1 addition & 1 deletion test/test_tokens.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ruff: noqa: D103
# ruff: noqa: D100, D103
from datetime import UTC, datetime, timedelta
from unittest.mock import Mock, patch

Expand Down

0 comments on commit 16787ee

Please sign in to comment.