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

Function success

src/status.py:17–29  ·  view source on GitHub ↗

Prints a success message. Args: message (str): The success 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

15 print(colored(f"{emoji} {message}", "red"))
16
17def success(message: str, show_emoji: bool = True) -> None:
18 """
19 Prints a success message.
20
21 Args:
22 message (str): The success message
23 show_emoji (bool): Whether to show the emoji
24
25 Returns:
26 None
27 """
28 emoji = "✅" if show_emoji else ""
29 print(colored(f"{emoji} {message}", "green"))
30
31def info(message: str, show_emoji: bool = True) -> None:
32 """

Callers 12

mainFunction · 0.85
fetch_songsFunction · 0.85
choose_random_songFunction · 0.85
mainFunction · 0.85
main.pyFile · 0.85
startMethod · 0.85
postMethod · 0.85
generate_promptsMethod · 0.85
combineMethod · 0.85
upload_videoMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected