Merge "typing: Broaden type for create_tempfiles"

This commit is contained in:
Zuul
2026-04-08 09:49:59 +00:00
committed by Gerrit Code Review
+2 -2
View File
@@ -15,7 +15,7 @@
"""Common utilities used in testing"""
from collections.abc import Callable, Sequence
from collections.abc import Callable, Iterable
import logging
from typing import Any
from unittest import mock
@@ -152,7 +152,7 @@ class BaseTestCase(testtools.TestCase):
def create_tempfiles(
self,
files: Sequence[
files: Iterable[
tuple[str, str | bytes, str] | tuple[str, str | bytes]
],
ext: str = '.conf',