best-doctor/mr_proper

View on GitHub
mr_proper/common_types.py

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import ast
from typing import Union, Tuple, List


AnyFuncdef = Union[ast.FunctionDef, ast.AsyncFunctionDef]
PureCheckResult = Tuple[bool, List[str]]