This was a design decision as a quick way to comment out a function (so that it is not publicly exposed) but you can still call it internally.
On Aug 1, 4:42 pm, Stef Mientki <[email protected]> wrote: > hello, > > This works : > def example1(): > return dict(aap='beer') > > This gives "Invalid function" and no error ticket > def example1 (): > return dict(aap='beer') > > thanks, > Stef Mientki

