Is it possible to use modules in data binding?

I usually set an attribute within the form and bind to that. E.g.

from ... import Helpers

class MyForm(MyFormTemplate):
     def __init__(self, **properties):
        self.helpers = Helpers
3 Likes