Duroktar / Wolf

Wolf is a VsCode extension that enables live inspection of Python code in the editor.
Other
128 stars 7 forks source link

Wolf stops working after numerous attempts at saving file #43

Closed SheepDomination closed 6 years ago

SheepDomination commented 6 years ago

Wolf doesn't appear to work with dictionaries; as well after saving a file numerous times, wolf doesn't work. I can enable wolf numerous times by means of the command palette but it doesn't work ?

Wolf should work after a saving a file, it automatically shows the results of the code, but that isn't the case.

Almenon commented 6 years ago

Can you give an example of how wolf fails with dictionaries please?

I tried the following:

a = {'a':2} #?
b = {'b':[1,2]} #?
print(type(a))
print(type(b))

and wolf handles it correctly.

SheepDomination commented 6 years ago

Dictionaries work, the other issue, I can't reproduce at this time; when and if I do, I will update.