fixes for flake8 3.7

This commit is contained in:
Anthony Sottile
2019-01-29 21:11:15 -08:00
parent 5119abe498
commit e5f823a3a7
5 changed files with 9 additions and 6 deletions

View File

@@ -143,9 +143,9 @@ class Mark(object):
#: name of the mark
name = attr.ib(type=str)
#: positional arguments of the mark decorator
args = attr.ib() # type: List[object]
args = attr.ib() # List[object]
#: keyword arguments of the mark decorator
kwargs = attr.ib() # type: Dict[str, object]
kwargs = attr.ib() # Dict[str, object]
def combined_with(self, other):
"""