Skip to content

Commit

Permalink
WIP: remove accidently added func arg
Browse files Browse the repository at this point in the history
  • Loading branch information
nstelter-slac committed May 7, 2024
1 parent 2614566 commit aa4e2df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pydm/widgets/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def eventFilter(self, obj, event):
return
channels = channels_method()
if channels:
self.show_address_tooltip(event, channels)
self.show_address_tooltip(event)
return True
else:
# return and run default behavior middle-click paste if PyDMLineEdit
Expand All @@ -204,7 +204,7 @@ def eventFilter(self, obj, event):
return False
return False

def show_address_tooltip(self, event, channels):
def show_address_tooltip(self, event):
"""
Show the PyDMTooltip and copy address to clipboard
Expand Down

0 comments on commit aa4e2df

Please sign in to comment.