From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9FD3E1382C5 for ; Sun, 24 Jan 2021 15:07:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C125AE09B8; Sun, 24 Jan 2021 15:07:26 +0000 (UTC) Received: from mail-qt1-f182.google.com (mail-qt1-f182.google.com [209.85.160.182]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7E00FE09B8 for ; Sun, 24 Jan 2021 15:07:26 +0000 (UTC) Received: by mail-qt1-f182.google.com with SMTP id z9so7855450qtv.6 for ; Sun, 24 Jan 2021 07:07:26 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=iL+34aeKnGTIP7dRfYdAEw8PkLay1vJB8rjqYuTCwbw=; b=KG+AdOPPEA15I/NYxCpQUUZ5DERVd+sLk34NV0M2ckkU10h7FbVXxE7uMz9JR9Idcj CV8HmKX1BKAIUqlv2pTeto5nGOVIVTWXDUBpEbHkgBxxZ1AWc2dxqajd/V2hFawiKhe4 V6Oqc0LyeCs5Cmd10DcSuypCDbT5ILPUUcvynIGJXHxFzCXKAv6M5sYOctJRs6KzaHyH mvVs8cM5IzaftvBH0iyZbEL9f5uzKuR4LLQ4WTYVCoIvtnAy8fa4TqBTdlg/5nA5ZLUx yr00ae1bfvaMOhtBTCp/8Rkct9H/exbETncgQJhhSr3qL74avGyGz0DBtz73ArEpzpEx l4GA== X-Gm-Message-State: AOAM533xUBXm8MxUTXKzwetjxIB6lFWmBttA+0mwYM1HF3Tn3zT9jftt fUvF3ZF8mWOOHyRquA/o9Hn/0sVQzoo= X-Google-Smtp-Source: ABdhPJz5qca9OoLCy53WTFR7F/Zc/ZJ/gQijGZleMRNrBG9jNwblQtjcQCIljXga5Jj8DSOZDNVJ1Q== X-Received: by 2002:ac8:550a:: with SMTP id j10mr759431qtq.193.1611500845251; Sun, 24 Jan 2021 07:07:25 -0800 (PST) Received: from localhost ([208.104.103.123]) by smtp.gmail.com with ESMTPSA id d3sm10377390qka.36.2021.01.24.07.07.24 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sun, 24 Jan 2021 07:07:24 -0800 (PST) From: Matt Turner To: gentoo-catalyst@lists.gentoo.org Cc: Matt Turner Subject: [gentoo-catalyst] [PATCH 1/4] catalyst: Remove unused import Date: Sun, 24 Jan 2021 10:07:19 -0500 Message-Id: <20210124150722.760520-1-mattst88@gentoo.org> X-Mailer: git-send-email 2.26.2 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-catalyst@lists.gentoo.org Reply-to: gentoo-catalyst@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Archives-Salt: 1ca11d24-bab9-4564-af02-7f1260df1bef X-Archives-Hash: a676b8600504b78df5c156494f22f9d6 Signed-off-by: Matt Turner --- catalyst/base/targetbase.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/catalyst/base/targetbase.py b/catalyst/base/targetbase.py index 3e338bee..ce16566b 100644 --- a/catalyst/base/targetbase.py +++ b/catalyst/base/targetbase.py @@ -3,7 +3,7 @@ import os from abc import ABC, abstractmethod from pathlib import Path -from catalyst.support import addl_arg_parse, CatalystError +from catalyst.support import addl_arg_parse class TargetBase(ABC): -- 2.26.2