From f56c221a501da028bcfedffab65a0858e68221d2 Mon Sep 17 00:00:00 2001 From: jposada202020 Date: Mon, 20 Mar 2023 17:23:49 -0400 Subject: [PATCH] removing need to use print format option. --- docs/design_guide.rst | 7 ------- 1 file changed, 7 deletions(-) diff --git a/docs/design_guide.rst b/docs/design_guide.rst index 784284892c..40ce285177 100644 --- a/docs/design_guide.rst +++ b/docs/design_guide.rst @@ -742,14 +742,7 @@ You could other examples if needed featuring different functionalities of the library. If you add additional examples, be sure to include them in the ``examples.rst``. Naming of the examples files should use the name of the library followed by a description, using underscore to separate them. -When using print statements you should use the ``" ".format()`` format, as there are particular boards -that are not capable to use f-strings. -.. code-block:: python - - text_to_display = "World!" - - print("Hello {}".format(text_to_display)) Sensor properties and units --------------------------------------------------------------------------------