summaryrefslogtreecommitdiff
path: root/gr-trellis/python/trellis/__init__.py
diff options
context:
space:
mode:
authorMarcus Müller <marcus@hostalia.de>2020-06-19 11:07:54 +0200
committerMarcus Müller <marcus@hostalia.de>2020-06-19 11:07:54 +0200
commite76d04ca2f4f15e3b1a1ab2a81dd52c4e6d2472c (patch)
tree1d86f68fceed9cd7204d9a79e816dc06c15feaf4 /gr-trellis/python/trellis/__init__.py
parent98348e37209aa7daeb96fe5ead815e5b083dc6da (diff)
parent39311758cb1e6a7424d3213b3eb2c65c8c4dcfe1 (diff)
Move from SWIG to Pybind11
Goodbye, and thanks for all the fish, SWIG. Please refer to docs/PYBIND11.md for details on how to deal with Pybind.
Diffstat (limited to 'gr-trellis/python/trellis/__init__.py')
-rw-r--r--gr-trellis/python/trellis/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/gr-trellis/python/trellis/__init__.py b/gr-trellis/python/trellis/__init__.py
index e0e2214810..c77a88692c 100644
--- a/gr-trellis/python/trellis/__init__.py
+++ b/gr-trellis/python/trellis/__init__.py
@@ -15,10 +15,10 @@ from __future__ import unicode_literals
import os
try:
- from .trellis_swig import *
+ from .trellis_python import *
except ImportError:
dirname, filename = os.path.split(os.path.abspath(__file__))
- __path__.append(os.path.join(dirname, "..", "..", "swig"))
- from .trellis_swig import *
+ __path__.append(os.path.join(dirname, "bindings"))
+ from .trellis_python import *
# import any pure python here