blob: f5361187d496905e298a05790bf96ab0b0e67fbd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
"""Tests for missing-function-docstring"""
# pylint: disable=unused-argument, missing-class-docstring, too-few-public-methods, unused-variable
def func(tion): # [missing-function-docstring]
pass
def func_two(tion):
"""Documented"""
def inner(fun):
# Not documented
pass
class MyClass:
def __init__(self, my_param: int) -> None: # [missing-function-docstring]
pass
|