We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e39230 commit fbdb3ddCopy full SHA for fbdb3dd
matlab_kernel/__init__.py
@@ -1,3 +1,3 @@
1
"""A Matlab kernel for Jupyter"""
2
3
-__version__ = '0.16.4'
+__version__ = '0.16.5'
matlab_kernel/kernel.py
@@ -60,6 +60,10 @@ class MatlabKernel(MetaKernel):
60
}
61
kernel_json = get_kernel_json()
62
63
+ def __init__(self, *args, **kwargs):
64
+ super(MatlabKernel, self).__init__(*args, **kwargs)
65
+ self.__matlab = None
66
+
67
def get_usage(self):
68
return "This is the Matlab kernel."
69
0 commit comments