comments fixes

This commit is contained in:
Marek Marczykowski-Górecki 2017-10-20 01:06:06 +02:00
parent c2c3225622
commit 85c3368a0d
No known key found for this signature in database
GPG Key ID: 063938BA42CFA724
2 changed files with 2 additions and 2 deletions

View File

@ -257,7 +257,7 @@ class property(object): # pylint: disable=redefined-builtin,invalid-name
pre_event=True,
name=self.__name__, newvalue=value)
instance._property_init(self, value) # pylint: disable=protected-access
instance._property_init(self, value) # pylint: disable=protected-access
if has_oldvalue:
instance.fire_event('property-set:' + self.__name__,

View File

@ -500,7 +500,7 @@ class QubesTestCase(unittest.TestCase):
:param subject: emitter which is being checked
:type emitter: :py:class:`TestEmitter`
:param str event: event identifier
:param list kwargs: when given, all items must appear in kwargs passed \
:param dict kwargs: when given, all items must appear in kwargs passed \
to an event
'''