Open
Description
Maybe, the Python documentation would be more readable by utilizing the Python typing. For example, instead of:
from controller import Node
class Node:
def getId(self):
def getDef(self):
def getParentNode(self):
def isProto(self):
def getFromProtoDef(self, name):
we could write
from controller import Node
class Node:
def getId(self) -> int:
def getDef(self) -> str:
def getParentNode(self) -> Node:
def isProto(self) -> bool:
def getFromProtoDef(self, name : str):
The same applies to the implementation.