Skip to content

Commit

Permalink
Flake8 improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
slightlynybbled committed May 4, 2018
1 parent e004219 commit afee1e1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tk_tools/canvas.py
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,8 @@ class Led(ttk.Frame):
:param on_click_callback: a callback which accepts a boolean parameter 'on'
:param options: the frame options
"""
def __init__(self, parent, size=100, on_click_callback=None, toggle_on_click=False, **options):
def __init__(self, parent, size=100,
on_click_callback=None, toggle_on_click=False, **options):
self._parent = parent
super().__init__(self._parent, padding=3, borderwidth=2,
**options)
Expand Down

0 comments on commit afee1e1

Please sign in to comment.