Skip to content
This repository has been archived by the owner on Nov 30, 2022. It is now read-only.

Fix typo #1280

Merged
merged 2 commits into from
Sep 8, 2022
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ The types of changes are:
* Fix for pytest-asyncio bug [#1260](https://github.com/ethyca/fidesops/pull/1260)
* Fix download link in privacy center [#1264](https://github.com/ethyca/fidesops/pull/1264)
* Make admin ui work when volumes are mounted [#1266](https://github.com/ethyca/fidesops/pull/1266)
* Fixed typo in enum value [#1280](https://github.com/ethyca/fidesops/pull/1280)

## [1.7.2](https://github.com/ethyca/fidesops/compare/1.7.1...1.7.2)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class SaaSRequestType(Enum):
An `Enum` containing the different possible types of SaaS requests
"""

READ = "read'"
READ = "read"
UPDATE = "update"
DATA_PROTECTION_REQUEST = "data_protection_request"
DELETE = "delete"
Expand Down