From c6c9d0a734b0a404404b6764c731e95df327e4dc Mon Sep 17 00:00:00 2001 From: Jan Janssen Date: Tue, 3 Oct 2023 23:09:02 +0200 Subject: [PATCH 1/2] Update __init__.py --- pysqa/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/pysqa/__init__.py b/pysqa/__init__.py index 456047e..d8a3f3d 100644 --- a/pysqa/__init__.py +++ b/pysqa/__init__.py @@ -2,7 +2,6 @@ __all__ = [] from pysqa.queueadapter import QueueAdapter -from pysqa.executor.executor import Executor from ._version import get_versions From 4187aa714f5b5cc5809b246e071bed5fa60904a4 Mon Sep 17 00:00:00 2001 From: Jan Janssen Date: Tue, 3 Oct 2023 23:09:16 +0200 Subject: [PATCH 2/2] Update __init__.py --- pysqa/executor/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pysqa/executor/__init__.py b/pysqa/executor/__init__.py index e69de29..0209218 100644 --- a/pysqa/executor/__init__.py +++ b/pysqa/executor/__init__.py @@ -0,0 +1 @@ +from pysqa.executor.executor import Executor