dddomodossola / PFD

Apache License 2.0
0 stars 1 forks source link

Two minor code issues: #18

Closed AndKe closed 3 years ago

AndKe commented 3 years ago

with self.update_lock: - I don't see it being used anywhere. (maybe it works in a way I don't understand)

super(MyApp, self).on_close() there is no MyApp

dddomodossola commented 3 years ago

with self.update_lock creates a safe context where to access widgets preventing concurrent changes with the remi thread. super(MyApp, self).on_close() can be removed ;-)