(a_type, typing)
| 749 | |
| 750 | |
| 751 | def _is_classvar(a_type, typing): |
| 752 | return (a_type is typing.ClassVar |
| 753 | or (typing.get_origin(a_type) is typing.ClassVar)) |
| 754 | |
| 755 | |
| 756 | def _is_initvar(a_type, dataclasses): |
no outgoing calls
no test coverage detected
searching dependent graphs…