Hi,
When using Python3 type hints ( “: str”) like in :
[code]def loadControllerConfigFromFile(filename : str) -> dict:
with open(filename) as f:
data = f.read()
data = toml.loads( data )
return data
Node
- virtual
- physical
[/code]
Sublime’s highlighting gets crazy and for instance the comments are not recognized as such. I am using SublimeText3
Any idea how to fix this ?
Regards
Matt