We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0565a7a commit 58e77f5Copy full SHA for 58e77f5
changelog/3635.trivial.rst
@@ -0,0 +1 @@
1
+Replace broken type annotations with type comments.
src/_pytest/mark/structures.py
@@ -136,9 +136,9 @@ class Mark(object):
136
#: name of the mark
137
name = attr.ib(type=str)
138
#: positional arguments of the mark decorator
139
- args = attr.ib(type="List[object]")
+ args = attr.ib() # type: List[object]
140
#: keyword arguments of the mark decorator
141
- kwargs = attr.ib(type="Dict[str, object]")
+ kwargs = attr.ib() # type: Dict[str, object]
142
143
def combined_with(self, other):
144
"""
0 commit comments