summaryrefslogtreecommitdiffstats
path: root/module/remote/create_apitypes.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/remote/create_apitypes.py')
-rw-r--r--module/remote/create_apitypes.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/module/remote/create_apitypes.py b/module/remote/create_apitypes.py
index 7755b5c57..d596f07ac 100644
--- a/module/remote/create_apitypes.py
+++ b/module/remote/create_apitypes.py
@@ -3,19 +3,18 @@
import re
import inspect
-import sys
from os.path import abspath, dirname, join
path = dirname(abspath(__file__))
-module = join(path, "..", "..")
-
-sys.path.append(join(module, "lib"))
-sys.path.append(join(module, "remote"))
+root = abspath(join(path, "..", ".."))
from thrift.Thrift import TType
from thriftgen.pyload import ttypes
from thriftgen.pyload import Pyload
+# TODO: import and add version
+# from pyload import CURRENT_VERSION
+
type_map = {
TType.BOOL: 'bool',
TType.DOUBLE: 'float',