From 1a335981da910ff4d0f22d0dff005c8049c6f8e5 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 6 May 2024 08:22:28 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- docs/source/development/eep-02-typing.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/development/eep-02-typing.md b/docs/source/development/eep-02-typing.md index 1a49e0d82..34ea69b1a 100644 --- a/docs/source/development/eep-02-typing.md +++ b/docs/source/development/eep-02-typing.md @@ -39,9 +39,9 @@ benefits of static typing without breaking users' code in too many places. ## Motivation and ressources - [Writing Python like it's Rust](https://kobzol.github.io/rust/python/2023/05/20/writing-python-like-its-rust.html). - A very good blogpost that summarizes the drawbacks of "stringly-typed" Python code and shows how - to incorporate typing philosophies from Rust into Python projects. Read this if you - don't have time to read the other ressources. + A very good blogpost that summarizes the drawbacks of "stringly-typed" Python code and + shows how to incorporate typing philosophies from Rust into Python projects. Read this + if you don't have time to read the other ressources. - [Robust Python](https://www.oreilly.com/library/view/robust-python/9781098100650/), an excellent book that discusses how to design code around types and provides an introduction to static type checkers in Python.