Skip to content

Commit

Permalink
🐛 Issue#88 fixes typo mistake. Resource name const was wrong. [nazrul…
Browse files Browse the repository at this point in the history
…world]
  • Loading branch information
nazrulworld committed Dec 23, 2021
1 parent 52f9973 commit 352260c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ History
6.2.0b4 (unreleased)
--------------------

- Nothing changed yet.
Bugfixes

- Issue #88 fixes typo mistake. Resource name const was wrong. [nazrulworld]


6.2.0b3 (2021-06-26)
Expand Down
2 changes: 1 addition & 1 deletion fhir/resources/DSTU2/deviceuserequest.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class DeviceUseRequest(domainresource.DomainResource):
walker.
"""

resource_type = Field("DeviceRequest", const=True)
resource_type = Field("DeviceUseRequest", const=True)

bodySiteCodeableConcept: fhirtypes.CodeableConceptType = Field(
None,
Expand Down
2 changes: 1 addition & 1 deletion fhir/resources/DSTU2/subscription.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class Subscription(domainresource.DomainResource):
another system is able to take an appropriate action.
"""

resource_type = Field("Substance", const=True)
resource_type = Field("Subscription", const=True)

criteria: fhirtypes.String = Field(
None,
Expand Down

0 comments on commit 352260c

Please sign in to comment.