Remove quotes from type annotation (#4384)

This commit is contained in:
codefiles 2026-04-06 22:21:51 -04:00 committed by GitHub
parent 9e8cbd0181
commit d57709cb2f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ if TYPE_CHECKING:
class FormattedOutput: class FormattedOutput:
@staticmethod @staticmethod
def _get_values( def _get_values(
o: 'DataclassInstance', o: DataclassInstance,
class_formatter: str | Callable | None = None, # type: ignore[type-arg] class_formatter: str | Callable | None = None, # type: ignore[type-arg]
filter_list: list[str] = [], filter_list: list[str] = [],
) -> dict[str, Any]: ) -> dict[str, Any]: