Remove quotes from type annotation (#4384)
This commit is contained in:
parent
9e8cbd0181
commit
d57709cb2f
|
|
@ -17,7 +17,7 @@ if TYPE_CHECKING:
|
|||
class FormattedOutput:
|
||||
@staticmethod
|
||||
def _get_values(
|
||||
o: 'DataclassInstance',
|
||||
o: DataclassInstance,
|
||||
class_formatter: str | Callable | None = None, # type: ignore[type-arg]
|
||||
filter_list: list[str] = [],
|
||||
) -> dict[str, Any]:
|
||||
|
|
|
|||
Loading…
Reference in New Issue