From ed13f4d87631b41debf09f7d432613b6c3aa2677 Mon Sep 17 00:00:00 2001 From: Michael Currin <18750745+MichaelCurrin@users.noreply.github.com> Date: Fri, 9 Aug 2024 09:37:41 +0200 Subject: [PATCH] fix --- cheatsheets/python/builtins/data-structures/dictionary.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cheatsheets/python/builtins/data-structures/dictionary.md b/cheatsheets/python/builtins/data-structures/dictionary.md index e1aea9b2d..fce4320e7 100644 --- a/cheatsheets/python/builtins/data-structures/dictionary.md +++ b/cheatsheets/python/builtins/data-structures/dictionary.md @@ -10,7 +10,7 @@ Keys must be immutable so they can be hashed. e.g. `str`, `int`, `tuple`. Not a - [dict](https://docs.python.org/3/library/stdtypes.html#dict) in the Python docs. - [dictionary type checks][] for how to annotate your dict and validate usage with type checking. -[dictionary type checks]: {% link cheatsheets/python/type-checks/data-structures/dictionary.html %} +[dictionary type checks]: {% link cheatsheets/python/type-checks/data-structures/dictionary.md %} ## Create