comparison mx/mx_graal.py @ 20002:5aa0cb2914f8

fixed pylint issue
author Doug Simon <doug.simon@oracle.com>
date Mon, 23 Mar 2015 14:31:01 +0100
parents e8a0a61526b2
children 9a3c19db3015
comparison
equal deleted inserted replaced
20001:0e7bb9cced6b 20002:5aa0cb2914f8
1426 1426
1427 class Task: 1427 class Task:
1428 # None or a list of strings. If not None, only tasks whose title 1428 # None or a list of strings. If not None, only tasks whose title
1429 # matches at least one of the substrings in this list will return 1429 # matches at least one of the substrings in this list will return
1430 # a non-None value from __enter__. The body of a 'with Task(...) as t' 1430 # a non-None value from __enter__. The body of a 'with Task(...) as t'
1431 # statement should check 't' and exit immediately if it is None. 1431 # statement should check 't' and exit immediately if it is None.
1432 filters = None 1432 filters = None
1433 1433
1434 def __init__(self, title, tasks=None): 1434 def __init__(self, title, tasks=None):
1435 self.tasks = tasks 1435 self.tasks = tasks
1436 self.title = title 1436 self.title = title