Skip to content

Commit

Permalink
Fix too-few-public-methods
Browse files Browse the repository at this point in the history
  • Loading branch information
tkoyama010 committed Aug 15, 2020
1 parent e4db855 commit d3008d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyvistaqt/counter.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class Counter(QObject):
Counter classCounter augmented with a Qt timer.
"""

# pylint: disable=too-few-public-method
# pylint: disable=too-few-public-methods

signal_finished = pyqtSignal()

Expand Down
2 changes: 1 addition & 1 deletion pyvistaqt/dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class FileDialog(QFileDialog):
the dialog was property closed.
"""

# pylint: disable=too-few-public-method
# pylint: disable=too-few-public-methods

dlg_accepted = pyqtSignal(str)

Expand Down

0 comments on commit d3008d6

Please sign in to comment.