From c4f9f9f8a04171649b263dea1e36e42ef446317e Mon Sep 17 00:00:00 2001 From: Vladimir Turov Date: Sat, 25 Dec 2021 03:17:55 +0300 Subject: [PATCH] Fix AttributeError: module 'hstest' has no attribute 'PlottingTest' --- hstest/__init__.py | 2 +- hstest/stage/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hstest/__init__.py b/hstest/__init__.py index 62175ccd..59b896fe 100644 --- a/hstest/__init__.py +++ b/hstest/__init__.py @@ -34,4 +34,4 @@ try: from hstest.stage import PlottingTest except ImportError: - pass + PlottingTest = None diff --git a/hstest/stage/__init__.py b/hstest/stage/__init__.py index 47978587..b196aec7 100644 --- a/hstest/stage/__init__.py +++ b/hstest/stage/__init__.py @@ -12,4 +12,4 @@ try: from hstest.stage.plotting_test import PlottingTest except ImportError: - pass + PlottingTest = None