From 9515e98f3e13358f86b98afceb9a4b98e9a0798c Mon Sep 17 00:00:00 2001 From: Ruben Undheim Date: Sun, 10 Feb 2019 12:55:06 +0000 Subject: Fix some imports to make python interface work Gbp-Pq: Name 0007-Fix-some-imports-to-make-python-interface-work.patch --- openEMS/python/openEMS/__init__.py | 2 ++ openEMS/python/openEMS/nf2ff.py | 1 + openEMS/python/openEMS/ports.py | 3 ++- 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/openEMS/python/openEMS/__init__.py b/openEMS/python/openEMS/__init__.py index fb1ddb9..734aa76 100644 --- a/openEMS/python/openEMS/__init__.py +++ b/openEMS/python/openEMS/__init__.py @@ -1,4 +1,6 @@ # -*- coding: utf-8 -*- # # Shortcut openEMS import +from __future__ import absolute_import + from openEMS.openEMS import openEMS diff --git a/openEMS/python/openEMS/nf2ff.py b/openEMS/python/openEMS/nf2ff.py index b6d38d0..b3792ff 100644 --- a/openEMS/python/openEMS/nf2ff.py +++ b/openEMS/python/openEMS/nf2ff.py @@ -15,6 +15,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . # +from __future__ import absolute_import import os import numpy as np diff --git a/openEMS/python/openEMS/ports.py b/openEMS/python/openEMS/ports.py index 1af1564..5b4fdc0 100644 --- a/openEMS/python/openEMS/ports.py +++ b/openEMS/python/openEMS/ports.py @@ -15,6 +15,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . # +from __future__ import absolute_import import os import numpy as np @@ -45,7 +46,7 @@ class UI_data: self.ui_f_val.append(utilities.DFT_time2freq(tmp[:,0], tmp[:,1], freq, signal_type=signal_type)) # Port Base-Class -class Port: +class Port(object): """ The port base class. -- cgit v1.2.3