Hello,
On Python (3.11 with tkinter), code2flow don't see function calls in event bindings like:
self.bind_class("Entry", "<Button-3><ButtonRelease-3>", self.show_textmenu)
for my show_textmenu(self, event) function,
neither functions calls as arguments of another function like:
getVar = my_imported_function(othersargs, on_progress_callback=self.progress_Check)
for my progress_Check(args) function.
But all works in my code...