From 77651677856bdafc88b5981026ef213032fe7a90 Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Sun, 20 Oct 2024 14:58:49 +0200 Subject: [PATCH] Method with an empty body `__init__` doesn't contain any code --- numcodecs/packbits.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/numcodecs/packbits.py b/numcodecs/packbits.py index d22976ed..bcdcf866 100644 --- a/numcodecs/packbits.py +++ b/numcodecs/packbits.py @@ -29,9 +29,6 @@ class PackBits(Codec): codec_id = 'packbits' - def __init__(self): - pass - def encode(self, buf): # normalise input arr = ensure_ndarray(buf).view(bool)