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

docs_check.DocCheck.check_table()   A

Complexity

Conditions 1

Size

Total Lines 2
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nop 1
dl 0
loc 2
rs 10
c 0
b 0
f 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