Simplified Validate Method

This commit is contained in:
Philip Ridout 2012-11-07 21:10:38 +00:00
parent 443ad478c1
commit 0bc2e5b71e
1 changed files with 1 additions and 4 deletions

View File

@ -521,7 +521,4 @@ class ServiceItem(object):
"""
Validates this service item
"""
if not self._raw_frames:
self.is_valid = False
return self.is_valid
return bool(self._raw_frames)