Skip to content

Commit 2a1795e

Browse files
author
Dag Brattli
committed
Docstring fixes
1 parent 26046a8 commit 2a1795e

File tree

5 files changed

+380
-299
lines changed

5 files changed

+380
-299
lines changed

changes.md

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
makes it much easier for editors and IDEs to validate the code and
77
perform code completion.
88
- Python 3.6+ only with type hints
9+
- Google docstring style.
910

1011
## 1.5.0
1112

examples/timeflies/timeflies_tkinter.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def handle_label(i, label):
2525

2626
def on_next(ev):
2727
label.place(x=ev.x + i*12 + 15, y=ev.y)
28-
ys = mousemove.delay(i*100).subscribe_(on_next, scheduler=scheduler)
28+
mousemove.delay(i*100).subscribe_(on_next, scheduler=scheduler)
2929

3030
for i, label in enumerate(labels):
3131
handle_label(i, label)

0 commit comments

Comments
 (0)