From 3c177b56fb764b793cdc2e9220bec93e2355beb2 Mon Sep 17 00:00:00 2001 From: Benedikt Date: Wed, 16 Apr 2025 10:51:09 +0200 Subject: [PATCH] remove outdated advice from Python 2 times in CONTRIBUTING.rst (#5733) --- CONTRIBUTING.rst | 5 ----- 1 file changed, 5 deletions(-) diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 1c82050cb..9010db2c3 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -252,11 +252,6 @@ There are a few coding conventions we use in beets: Transaction objects help control concurrent access to the database and assist in debugging conflicting accesses. -- Always use the `future - imports `__ - ``print_function``, ``division``, and ``absolute_import``, but *not* - ``unicode_literals``. These help keep your code modern and will help - in the eventual move to Python 3. - ``str.format()`` should be used instead of the ``%`` operator - Never ``print`` informational messages; use the `logging `__ module