Skip to content

Commit

Permalink
Docstring fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Dag Brattli committed Feb 22, 2018
1 parent 26046a8 commit 2a1795e
Show file tree
Hide file tree
Showing 5 changed files with 380 additions and 299 deletions.
1 change: 1 addition & 0 deletions changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
makes it much easier for editors and IDEs to validate the code and
perform code completion.
- Python 3.6+ only with type hints
- Google docstring style.

## 1.5.0

Expand Down
2 changes: 1 addition & 1 deletion examples/timeflies/timeflies_tkinter.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def handle_label(i, label):

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

for i, label in enumerate(labels):
handle_label(i, label)
Expand Down
Loading

0 comments on commit 2a1795e

Please sign in to comment.