From a0fc3ced50a03d4634e9fd44f7337b4e52c9b9cc Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Sun, 21 May 2023 11:06:38 +0200 Subject: [PATCH] Fix shell session code block --- .../pip-tools-for-python-dependencies-management/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content/posts/pip-tools-for-python-dependencies-management/index.md b/content/posts/pip-tools-for-python-dependencies-management/index.md index 30dbf6b..18b35ad 100644 --- a/content/posts/pip-tools-for-python-dependencies-management/index.md +++ b/content/posts/pip-tools-for-python-dependencies-management/index.md @@ -125,15 +125,15 @@ def sync_dependencies(ctx: Context) -> None: Invoke is a sort of Makefile, but written in Python. -```shell -❯ invoke --list # shorter: inv -l +```shell-session +$ invoke --list # shorter: inv -l Available tasks: compile-dependencies sync-dependencies update-dependencies -❯ inv compile-dependencies +$ inv compile-dependencies # Runs the commands... ```