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.217]) by gnuweeb.org (Postfix) with ESMTPSA id 3BE7D7E257; Mon, 3 Oct 2022 23:53:13 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1664841195; bh=5deA6jDkZkaXUj+2T5wF53hHuqhfWFhRLfh+aLBkjac=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=c26Ak2sGNR4+CQbHjQLe4yj9XcFNDe8OE9cRvvUz4Z35GJ12zQolne9too3SpvSZ1 nCWIjeqUM9mPbX0nw8x6JGm45neArkEqAcWsDDJ+PVgVX07sOgnyOpa0clb4mV3nxx FaxNgq41mmlNdC1LuTRjTDXKaYHQ3nJCZtlFaomcZixcH5BbERN8LUdBq/tPJO7i5J nDqOMFMYRyvIUJTEtTVoaHayGwh8fWOu7cyBIxIuSzw7CQSAK/xvaRxpsuGGCEYhkb 0D9ljp3VNpmUnzie9ISpDUF3gR57/zAkeiO0+yFwxBzHgoL3wKVwvIssTF8lIjPy1l T8LP6yj6fGJkg== From: Muhammad Rizki To: Ammar Faizi Cc: Muhammad Rizki , Alviro Iskandar Setiawan , GNU/Weeb Mailing List Subject: [PATCH v2 11/28] discord: Inherit the Deletion() class to the DBMethods() class Date: Tue, 4 Oct 2022 06:52:12 +0700 Message-Id: <20221003235230.1824-12-kiizuha@gnuweeb.org> X-Mailer: git-send-email 2.34.1.windows.1 In-Reply-To: <20221003235230.1824-1-kiizuha@gnuweeb.org> References: <20221003235230.1824-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