From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on gnuweeb.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=5.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,NO_DNS_FOR_FROM,URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.6 Received: from localhost.localdomain (unknown [101.128.125.177]) by gnuweeb.org (Postfix) with ESMTPSA id 2A94C804FD; Sat, 1 Oct 2022 13:04:35 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1664629477; bh=5deA6jDkZkaXUj+2T5wF53hHuqhfWFhRLfh+aLBkjac=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Xb8ZDu8Oc+AeRPRbCTHAukZbhq97GlDlEhID+Y3NPWcYUoTK4z7Jkug7P/iF3cnM6 5ia+NE6s4dkZ1SNX1D1zOmXiZPQiAmsuqWD8LpJU5Wg4N8bg3nTjORaJywXyAd9Cxo TsjGxf8gJGSldWo3BH8hRxALmLDWXYVPtjZ16WHpZVuEIDoJJ6yQoodNn8sR1bJ8Sv 6MbdbD8byxy1A8ALJoicphSFCncwEBwml8k8DDmr1i340yle1da8+LyJIhNMq8Guft lL/2KeJQ6wCIe39VOCVQg0I6A1SWXry2WrS/9qfmoJ/XFgzcMlVW6WGFu4z0tq0qnH I/NbWkAYV2xPQ== From: Muhammad Rizki To: Ammar Faizi Cc: Muhammad Rizki , Alviro Iskandar Setiawan , GNU/Weeb Mailing List Subject: [PATCH v1 09/26] discord: Inherit the Deletion() class to the DBMethods() class Date: Sat, 1 Oct 2022 20:03:37 +0700 Message-Id: <20221001130355.784-10-kiizuha@gnuweeb.org> X-Mailer: git-send-email 2.34.1.windows.1 In-Reply-To: <20221001130355.784-1-kiizuha@gnuweeb.org> References: <20221001130355.784-1-kiizuha@gnuweeb.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: Use the Deletion() class to inherit it to the DBMethods() class. Signed-off-by: Muhammad Rizki --- daemon/dscord/database/methods/__init__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/daemon/dscord/database/methods/__init__.py b/daemon/dscord/database/methods/__init__.py index 625a632..dbf94b2 100644 --- a/daemon/dscord/database/methods/__init__.py +++ b/daemon/dscord/database/methods/__init__.py @@ -6,9 +6,11 @@ from .insertion import Insertion from .getter import Getter +from .deletion import Deletion class DBMethods( Insertion, - Getter + Getter, + Deletion ): pass -- Muhammad Rizki