Skip to content

Commit a87edba

Browse files
committed
Minor cleanup
1 parent 58ec49d commit a87edba

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

refactorings/basic_examples.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ def __init__(self, x, y):
2828
def __eq__(self, other):
2929
if self.x == other.x and self.y == other.y:
3030
return True
31-
return False
31+
return False

refactorings/extract_examples.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ def create_sliders():
1313
force_slider = Slider(5, from_=1, to=10, orient=HORIZONTAL, label="Force")
1414
force_slider.pack()
1515
force_slider.set(DEFAULT_FORCE)
16-
1716
force_slider.configure(background="green")
17+
1818
return speed_slider, force_slider
1919

2020

0 commit comments

Comments
 (0)