OreosLab / SSRSpeedN

Function/method with an empty body PTC-W0049
Anti-pattern
Major
3 occurrences in this check
get_discord_emoji doesn't contain any code
208                else:
209                    raise Exception(f"NetworkError: {resp.status}==>\t{_url}")
210
211    def get_discord_emoji(self, _id: int, /) -> Optional[BytesIO]:212        pass
213
214    def get_file_path(self, emoji: str) -> str:
download_emoji doesn't contain any code
150        code_points = [f'{ord(c):04X}' for c in emoji]
151        return f"./resources/emoji/openmoji/{'-'.join(code_points)}.png"
152
153    def download_emoji(self, download_url):154        pass
155
156
get_discord_emoji doesn't contain any code
143    安装路径:./resources/emoji/openmoji
144    """
145
146    def get_discord_emoji(self, _id: int, /) -> Optional[BytesIO]:147        pass
148
149    def get_file_path(self, emoji: str) -> str: