Skip to content

Commit fde436d

Browse files
committed
Ruff fixes for dead code
1 parent 1848e4f commit fde436d

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

application/pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,5 @@ ignore_names = [
1616
"metadata",
1717
"recipient_email_address",
1818
"recipient_id",
19+
"unhandled_exception_logging_hidden_event"
1920
]

application/service_sync/reject_pending_changes/pending_changes.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ class PendingChange:
2121

2222
id: str # Id of the pending change from the change table
2323
value: str # Value of the pending change as a JSON string
24-
creatorsname: str # User name of the user who made the change
25-
email: str # Email address of the user who made the change
24+
_creatorsname: str # User name of the user who made the change #Reserved for future use if needed(retiring now)
25+
_email: str # Email address of the user who made the change #Reserved for future use if needed(retiring now)
2626
typeid: str # Type id of the service
2727
name: str # Name of the service
2828
uid: str # Uid of the service

0 commit comments

Comments
 (0)