pylint: disable incorrect not-callable message
This commit is contained in:
parent
85a571521b
commit
80b912ea14
1 changed files with 2 additions and 2 deletions
|
@ -118,7 +118,7 @@ class StreamFrame(object):
|
||||||
|
|
||||||
def cancel(self):
|
def cancel(self):
|
||||||
if self.cancel_func is not None:
|
if self.cancel_func is not None:
|
||||||
self.cancel_func()
|
self.cancel_func() # pylint: disable=not-callable
|
||||||
self.stream_frame.destroy()
|
self.stream_frame.destroy()
|
||||||
self.app.stream_removed()
|
self.app.stream_removed()
|
||||||
|
|
||||||
|
@ -460,4 +460,4 @@ class StreamFrame(object):
|
||||||
if self.cost_label is not None and self.cost_label.winfo_exists():
|
if self.cost_label is not None and self.cost_label.winfo_exists():
|
||||||
self.cost_label.config(text=locale.format_string("%.2f LBC",
|
self.cost_label.config(text=locale.format_string("%.2f LBC",
|
||||||
(round(total_points_paid, 2),),
|
(round(total_points_paid, 2),),
|
||||||
grouping=True))
|
grouping=True))
|
||||||
|
|
Loading…
Reference in a new issue