From f7272ee445cf9b6028dc40d77a008aa8478a5b00 Mon Sep 17 00:00:00 2001 From: Athanasius Date: Mon, 7 Jun 2021 12:32:12 +0100 Subject: [PATCH] Contributing: fstrings are mandatory, not only preferred Legacy code aside.... --- Contributing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Contributing.md b/Contributing.md index 07fd7fae..46f39d77 100644 --- a/Contributing.md +++ b/Contributing.md @@ -378,7 +378,7 @@ In addition to that we utilise one of the user-defined levels as: --- -## Prefer fstrings to modulo-formatting and .format +## Use fstrings, not modulo-formatting or .format [fstrings](https://www.python.org/dev/peps/pep-0498/) are new in python 3.6, and allow for string interpolation rather than more opaque formatting calls.