From f76547f08b38ff163d377f398e1d543a5da99dc1 Mon Sep 17 00:00:00 2001 From: tglarner Date: Thu, 12 Nov 2015 15:39:21 +0100 Subject: [PATCH] Update __init__.py Add dots for import search in the local directory. This fixes import problems experienced in a jupyter environment for python 3.5 --- commpy/__init__.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/commpy/__init__.py b/commpy/__init__.py index ef677e0..6aa52f2 100644 --- a/commpy/__init__.py +++ b/commpy/__init__.py @@ -14,11 +14,11 @@ """ #from channelcoding import * -from filters import * -from modulation import * -from impairments import * -from sequences import * -from channels import * +from .filters import * +from .modulation import * +from .impairments import * +from .sequences import * +from .channels import * try: from numpy.testing import Tester