From 776558d82cf912b09e3c034ee4d1b1cfc8ac9153 Mon Sep 17 00:00:00 2001 From: Enzo Bonnal Date: Wed, 9 Oct 2024 10:25:41 +0100 Subject: [PATCH] README: refac notes --- README.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/README.md b/README.md index 764c5d8..dcd6971 100644 --- a/README.md +++ b/README.md @@ -431,10 +431,7 @@ with open("./quadruped_pokemons.csv", mode="w") as file: ) ``` -## CPU-bound tasks -For CPU-bound tasks, consider using the [`PyPy`](https://github.com/pypy/pypy) interpreter whose *Just In Time* (JIT) compilation should drastically improve performances ! - -## change logging level +## logging level ```python logging.getLogger("streamable").setLevel(logging.WARNING) # default is INFO ```