1
changelog/3635.trivial.rst
Normal file
1
changelog/3635.trivial.rst
Normal file
@@ -0,0 +1 @@
|
||||
Replace broken type annotations with type comments.
|
||||
@@ -136,9 +136,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() # type: List[object]
|
||||
#: keyword arguments of the mark decorator
|
||||
kwargs = attr.ib(type="Dict[str, object]")
|
||||
kwargs = attr.ib() # type: Dict[str, object]
|
||||
|
||||
def combined_with(self, other):
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user