summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Clay <matt@mystile.com>2023-05-09 17:20:41 -0700
committerGitHub <noreply@github.com>2023-05-09 17:20:41 -0700
commit905131fc76a07cf89dbc8d33e7a4910da3f10a16 (patch)
tree0780f846445c731f6728c50d44a24583b7602fac
parentb576f0cda7aad938d1eab032608a79a30a6a4968 (diff)
downloadansible-905131fc76a07cf89dbc8d33e7a4910da3f10a16.tar.gz
junit-xml - Remove outdated type ignore hint (#80748)
-rw-r--r--lib/ansible/utils/_junit_xml.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ansible/utils/_junit_xml.py b/lib/ansible/utils/_junit_xml.py
index 31aff86224..6b7c80f4cd 100644
--- a/lib/ansible/utils/_junit_xml.py
+++ b/lib/ansible/utils/_junit_xml.py
@@ -15,7 +15,7 @@ from xml.dom import minidom
from xml.etree import ElementTree as ET
-@dataclasses.dataclass # type: ignore[misc] # https://github.com/python/mypy/issues/5374
+@dataclasses.dataclass
class TestResult(metaclass=abc.ABCMeta):
"""Base class for the result of a test case."""