pxt-arcade
pxt-arcade copied to clipboard
python: no completion for controller.A.on_event
Describe the bug
Python autocomplete (maybe js too, am in a python tutorial) seems to think controller === controller.A
and only gives options like .any_button
To Reproduce Steps to reproduce the behavior:
- Go to a python project
- type
controller.A
- expect to see
on_event
- See error
Expected behavior
should get a valid completion
javascript completion for controller.A.onEvent results in code with error:
controller.A.onEvent.Pressed, function() {
})
Still repros.