Skip to content
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
2 changes: 1 addition & 1 deletion gh_org_mgr/_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def compare_two_dicts(dict1: dict, dict2: dict) -> dict[str, dict[str, str | int
return differences


def dict_to_pretty_string(dictionary: dict, sensible_keys: None | list[str] = None) -> str:
def dict_to_pretty_string(dictionary: dict, sensible_keys: list[str] | None = None) -> str:
"""Convert a dict to a pretty-printed output."""

# Censor sensible fields
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ ignore = [
"D212",
"PTH123",
"CPY",
"PLR0917",
]
[tool.ruff.lint.extend-per-file-ignores]
"tests/*" = ["S101", "PLR", "PT011", "ANN001"]
Expand Down
Loading
Loading