Skip to content

Commit 9594aa2

Browse files
committed
-
1 parent 79ed4f0 commit 9594aa2

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

python_toolbox/wx_tools/widgets/cute_message_dialog.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313

1414

1515
class CuteMessageDialog(wx.MessageDialog, CuteDialog):
16-
'''blocktododoc'''
1716
def __init__(self, parent, message, caption='Message', style=wx.OK):
1817
wx.MessageDialog.__init__(self, parent, message, caption,
1918
style=style)

python_toolbox/wx_tools/widgets/cute_window/cute_window.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class CuteWindow(AcceleratorSavvyWindow, BindSavvyEvtHandler, wx.Window):
2222
'''
2323
An improved `wx.Window`.
2424
25-
The advantages of this class over `wx.Window`: #blocktododoc
25+
The advantages of this class over `wx.Window`:
2626
2727
- A `.freezer` property for freezing the window.
2828
- A `.create_cursor_changer` method which creates a `CursorChanger`
@@ -32,7 +32,7 @@ class CuteWindow(AcceleratorSavvyWindow, BindSavvyEvtHandler, wx.Window):
3232
3333
This class doesn't require calling its `__init__` when subclassing. (i.e.,
3434
you *may* call its `__init__` if you want, but it will do the same as
35-
calling `wx.Window.__init__`.) # blocktododoc: remove notice?
35+
calling `wx.Window.__init__`.)
3636
'''
3737

3838
freezer = freezing.FreezerProperty(

0 commit comments

Comments
 (0)