From e8b1eab6c3bfefa2cd6061ca1ce2fabd0bb36898 Mon Sep 17 00:00:00 2001 From: Esteban Giraldo Date: Tue, 19 Nov 2024 10:19:26 -0500 Subject: [PATCH] fix: typos --- docs/001-custom-features.md | 2 +- edx_sga/tests/test_utils.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/001-custom-features.md b/docs/001-custom-features.md index 7cc561a4..cdb6825a 100644 --- a/docs/001-custom-features.md +++ b/docs/001-custom-features.md @@ -42,7 +42,7 @@ platform settings. For our fork, this feature adds the capability to define a si ### Feature -To define a desire backend, follow the following format by defining the storage class and its kwargs. +To define a desired backend, follow the following format by defining the storage class and its kwargs. As an example, below you will find the Site Configuration definition to use an AWS S3 bucket: "SGA_STORAGE_SETTINGS": { diff --git a/edx_sga/tests/test_utils.py b/edx_sga/tests/test_utils.py index 4b476a31..001f2b49 100644 --- a/edx_sga/tests/test_utils.py +++ b/edx_sga/tests/test_utils.py @@ -50,7 +50,7 @@ def test_get_default_storage_with_settings_override(mock_configuration_helpers): "bucket_name": "test-bucket-1", "region_name": "us-east-1", } - } + }, }, ) storage = get_default_storage()