style(examples) fix style issues in Python examples (#2880)
Removes all semicolons at line endings in the Python examples.
This commit is contained in:
@@ -11,11 +11,11 @@ class Event_1():
|
||||
btn.add_event_cb(self.event_cb, lv.EVENT.CLICKED, None)
|
||||
|
||||
label = lv.label(btn)
|
||||
label.set_text("Click me!");
|
||||
label.set_text("Click me!")
|
||||
label.center()
|
||||
|
||||
def event_cb(self,e):
|
||||
print("Clicked");
|
||||
print("Clicked")
|
||||
|
||||
btn = e.get_target()
|
||||
label = btn.get_child(0)
|
||||
|
||||
Reference in New Issue
Block a user