(self, index)
| 119 | |
| 120 | # RemovedInDjango70Warning. |
| 121 | def __getitem__(self, index): |
| 122 | warnings.warn( |
| 123 | "Using indexes on an action tuple is deprecated. " |
| 124 | "Use Action attributes instead.", |
| 125 | RemovedInDjango70Warning, |
| 126 | skip_file_prefixes=django_file_prefixes(), |
| 127 | ) |
| 128 | return self._as_tuple()[index] |
| 129 | |
| 130 | |
| 131 | HORIZONTAL, VERTICAL = 1, 2 |
nothing calls this directly
no test coverage detected