(self)
| 1068 | return self.max_pos |
| 1069 | |
| 1070 | def is_dynamic(self) -> bool: |
| 1071 | return ( |
| 1072 | self.type is None |
| 1073 | or isinstance(self.type, mypy.types.CallableType) |
| 1074 | and self.type.implicit |
| 1075 | ) |
| 1076 | |
| 1077 | |
| 1078 | FUNCDEF_FLAGS: Final = FUNCITEM_FLAGS + [ |
no test coverage detected