Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
timoballard committed Apr 24, 2024
1 parent ca9c12c commit fde6738
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions backend/audit/cross_validation/naming.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,19 @@ class SectionBabelFish(NamedTuple):
camel_case: str # Mostly used in JSON Schemas.
friendly: str # The name we show to users.
friendly_title: str # The title on the submission progress page/form page.
reverse_url_for_file_upload: str | None # Django value for finding the actual URL for upload.
reverse_url_for_file_deletion: str | None # Django value for finding the actual URL for deletion.
reverse_url_for_file_upload: (
str | None
) # Django value for finding the actual URL for upload.
reverse_url_for_file_deletion: (
str | None
) # Django value for finding the actual URL for deletion.
snake_case: str # Mostly used for the field names in SingleAuditChecklist.
url_tail: str | None # Hyphenated version of snake_case, mostly.
workbook_number: int | None # Our upload ordering of workbooks.
submission_event: str # The event type we log to the SubmissionEvents table when this section is updated
deletion_event: str | None # The event type we log to the SubmissionEvents table when this section is deleted
deletion_event: (
str | None
) # The event type we log to the SubmissionEvents table when this section is deleted


SECTION_NAMES = {
Expand Down

0 comments on commit fde6738

Please sign in to comment.