Skip to content

Commit

Permalink
Minor comments
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoddemus committed May 31, 2014
1 parent d1fd7c0 commit 61d11df
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pytestqt/_tests/test_exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@


class Receiver(QtCore.QObject):
"""
Dummy QObject subclass that raises an error on receiving events if
`raise_error` is True.
"""

def __init__(self, raise_error, *args, **kwargs):
QtCore.QObject.__init__(self, *args, **kwargs)
Expand Down

0 comments on commit 61d11df

Please sign in to comment.