MCPcopy
hub / github.com/FujiwaraChoki/MoneyPrinterV2 / info

Function info

src/status.py:31–43  ·  view source on GitHub ↗

Prints an info message. Args: message (str): The info message show_emoji (bool): Whether to show the emoji Returns: None

(message: str, show_emoji: bool = True)

Source from the content-addressed store, hash-verified

29 print(colored(f"{emoji} {message}", "green"))
30
31def info(message: str, show_emoji: bool = True) -> None:
32 """
33 Prints an info message.
34
35 Args:
36 message (str): The info message
37 show_emoji (bool): Whether to show the emoji
38
39 Returns:
40 None
41 """
42 emoji = "ℹ️" if show_emoji else ""
43 print(colored(f"{emoji} {message}", "magenta"))
44
45def warning(message: str, show_emoji: bool = True) -> None:
46 """

Callers 15

mainFunction · 0.85
fetch_songsFunction · 0.85
mainFunction · 0.85
main.pyFile · 0.85
unzip_fileMethod · 0.85
startMethod · 0.85
generate_postMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected