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
216                            break
217                        f.write(block)
218
219    def get_discord_emoji(self, _id: int, /) -> Optional[BytesIO]:220        pass
221
222    def get_file_path(self, emoji: str) -> str:
download_emoji doesn't contain any code
148        code_points = [f"{ord(c):04X}" for c in emoji]
149        return f"./resources/emoji/openmoji/{'-'.join(code_points)}.png"
150
151    def download_emoji(self, download_url):152        pass
153
154
get_discord_emoji doesn't contain any code
141    安装路径:./resources/emoji/openmoji
142    """
143
144    def get_discord_emoji(self, _id: int, /) -> Optional[BytesIO]:145        pass
146
147    def get_file_path(self, emoji: str) -> str: