From c95812c2073436bf0d7732ccd487de59f8e818d9 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Thu, 1 Jun 2023 17:03:52 +0000 Subject: [PATCH] pakfire: Import everything from _pakfire Signed-off-by: Michael Tremer --- src/pakfire/__init__.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/pakfire/__init__.py b/src/pakfire/__init__.py index ebe61a268..d30bcd679 100644 --- a/src/pakfire/__init__.py +++ b/src/pakfire/__init__.py @@ -19,9 +19,8 @@ # # ############################################################################### -from ._pakfire import Pakfire, native_arch, supported_arches - +# Import version from .__version__ import PAKFIRE_VERSION as __version__ -# Import Exceptions -from ._pakfire import CommandExecutionError +# Import everything from the C module +from ._pakfire import * -- 2.39.5