Skip to content

Commit aa4e2df

Browse files
committed
WIP: remove accidently added func arg
1 parent 2614566 commit aa4e2df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pydm/widgets/base.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ def eventFilter(self, obj, event):
195195
return
196196
channels = channels_method()
197197
if channels:
198-
self.show_address_tooltip(event, channels)
198+
self.show_address_tooltip(event)
199199
return True
200200
else:
201201
# return and run default behavior middle-click paste if PyDMLineEdit
@@ -204,7 +204,7 @@ def eventFilter(self, obj, event):
204204
return False
205205
return False
206206

207-
def show_address_tooltip(self, event, channels):
207+
def show_address_tooltip(self, event):
208208
"""
209209
Show the PyDMTooltip and copy address to clipboard
210210

0 commit comments

Comments
 (0)