From 59ea2b0f1d3894489564634c62ee53fb1883bb53 Mon Sep 17 00:00:00 2001 From: bamsumit Date: Wed, 24 Nov 2021 06:37:01 -0800 Subject: [PATCH] Clean up of explicit namespace declaration (#11) * Updated readme and tutuorial links. Signed-off-by: bamsumit * clean __init__.py Signed-off-by: bamsumit Co-authored-by: Marcus G K Williams --- src/lava/__init__.py | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 src/lava/__init__.py diff --git a/src/lava/__init__.py b/src/lava/__init__.py deleted file mode 100644 index 7017b896..00000000 --- a/src/lava/__init__.py +++ /dev/null @@ -1,8 +0,0 @@ -# Copyright (C) 2021 Intel Corporation -# SPDX-License-Identifier: BSD-3-Clause -# See: https://spdx.org/licenses/ -try: - __import__('pkg_resources').declare_namespace(__name__) -except: # noqa E722 - from pkgutil import extend_path - __path__ = extend_path(__path__, __name__)