| Total Complexity | 1 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | """ |
||
| 2 | Verify that parts of the docs match what's in the code. |
||
| 3 | """ |
||
| 4 | from __future__ import annotations |
||
| 5 | |||
| 6 | |||
| 7 | class DocCheck: |
||
| 8 | def check_table(self) -> DocCheck: |
||
| 9 | return self |
||
| 10 | |||
| 11 | |||
| 12 | if __name__ == "__main__": |
||
| 13 | DocCheck().check_table() |
||
| 14 |