Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
lithorus committed Dec 3, 2024
1 parent df8c823 commit 887333b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions cuegui/cuegui/plugins/MonitorJobGraphPlugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,15 @@ def __init__(self, parent):
cuegui.app().unmonitor.connect(self.__unmonitor)
cuegui.app().facility_changed.connect(self.__setJob)

# pylint: disable=missing-function-docstring
def dragEnterEvent(self, event):
cuegui.Utils.dragEnterEvent(event)

# pylint: disable=missing-function-docstring
def dragMoveEvent(self, event):
cuegui.Utils.dragMoveEvent(event)

# pylint: disable=missing-function-docstring
def dropEvent(self, event):
for jobName in cuegui.Utils.dropEvent(event):
self.__setJob(jobName)
Expand Down

0 comments on commit 887333b

Please sign in to comment.