Skip to content

Commit

Permalink
[PRMP-1257] fix broken tests
Browse files Browse the repository at this point in the history
  • Loading branch information
steph-torres-nhs committed Jan 13, 2025
1 parent 9ab8d3a commit de70673
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lambdas/models/nrl_sqs_message.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ class NrlAttachment(BaseModel):
)
content_type: str = "application/pdf"
language: str = "en-UK"
url: str = None
size: int = None
hash: str = None
title: str = None
creation: str = None
url: Optional[str] = None
size: Optional[int] = None
hash: Optional[str] = None
title: Optional[str] = None
creation: Optional[str] = None


class NrlSqsMessage(BaseModel):
Expand All @@ -31,6 +31,6 @@ class NrlSqsMessage(BaseModel):
snomed_code_practice_setting: SnomedCode = (
SnomedCodes.GENERAL_MEDICAL_PRACTICE.value
)
description: str = None
description: Optional[str] = None
attachment: Optional[NrlAttachment] = None
action: str

0 comments on commit de70673

Please sign in to comment.