OreosLab / SSRSpeedN

Missing module/function docstring PY-D0003
Documentation
Minor
2 occurrences in this check
Docstring missing for __sort_by_name
 8        return result["ping"]
 9
10    @staticmethod
11    def __sort_by_name(result: dict) -> float:12        return result["remarks"]
13
14    def sort_result(self, result: list, sort_method: str) -> list:
Docstring missing for push2tg
22        return result
23
24
25def push2tg(filename: str, group_id: str, bot_token: str) -> dict:26    result = {"status": -1, "code": -1}
27    try:
28        with open(filename, "rb") as f: