Passed
Push — dependabot/pip/flake8-bugbear-... ( 5c5892...6076c0 )
by
unknown
01:34
created

docs_check   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 7
dl 0
loc 14
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A DocCheck.check_table() 0 2 1
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