From 55f5938e793c5725c244c3af2c88895d61d18a92 Mon Sep 17 00:00:00 2001 From: Gra Date: Fri, 24 Apr 2009 14:29:58 +0200 Subject: [PATCH] Line breaks for args to fit in 79 columns (init methods). --- supportscreen.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/supportscreen.py b/supportscreen.py index e4f9354..4d30856 100644 --- a/supportscreen.py +++ b/supportscreen.py @@ -90,8 +90,10 @@ class SupportScreen(mytkSimpleDialog.Dialog): class ExpirationScreen(mytkSimpleDialog.Dialog): - def __init__(self, parent, title = None, rootx_offset=50, rooty_offset=50): - mytkSimpleDialog.Dialog.__init__(self, parent, title, rootx_offset, rooty_offset) + def __init__(self, parent, title = None, + rootx_offset=50, rooty_offset=50): + mytkSimpleDialog.Dialog.__init__(self, parent, title, + rootx_offset, rooty_offset) def body(self, master): self.t = ScrolledText.ScrolledText(master) @@ -160,8 +162,10 @@ class ExpirationScreen(mytkSimpleDialog.Dialog): webbrowser.open(self.t.get(start, end)) class AboutDialog(mytkSimpleDialog.Dialog): - def __init__(self, parent, title = None, rootx_offset=50, rooty_offset=50): - mytkSimpleDialog.Dialog.__init__(self, parent, title, rootx_offset, rooty_offset) + def __init__(self, parent, title = None, + rootx_offset=50, rooty_offset=50): + mytkSimpleDialog.Dialog.__init__(self, parent, title, + rootx_offset, rooty_offset) def body(self, master): self.t = ScrolledText.ScrolledText(master) -- 2.45.1