From 1daed228626eb760d20571925bd92d7f23acdace Mon Sep 17 00:00:00 2001 From: Michael Waskom Date: Mon, 29 Apr 2024 21:42:39 +0000 Subject: [PATCH] Fix formatting in modal dict changelog entry --- CHANGELOG.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ae4b951b0..1db1f4767 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,18 +12,18 @@ We appreciate your patience while we speedily work towards a stable release of t ### 0.62.116 (2024-04-26) -* Added a command-line interface for interacting with modal.Dict objects. Run modal dict --help in your terminal to see what is available. +* Added a command-line interface for interacting with `modal.Dict` objects. Run `modal queue --help` in your terminal to see what is available. ### 0.62.114 (2024-04-25) -* `Secret.from_dotenv` now accepts an optional filename keyword argument: - - ```python - @app.function(secrets=[modal.Secret.from_dotenv(filename=".env-dev")]) - def run(): - ... +* `Secret.from_dotenv` now accepts an optional filename keyword argument: + + ```python + @app.function(secrets=[modal.Secret.from_dotenv(filename=".env-dev")]) + def run(): + ... ```