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

Function warning

src/status.py:45–57  ·  view source on GitHub ↗

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

43 print(colored(f"{emoji} {message}", "magenta"))
44
45def warning(message: str, show_emoji: bool = True) -> None:
46 """
47 Prints a warning message.
48
49 Args:
50 message (str): The warning message
51 show_emoji (bool): Whether to show the emoji
52
53 Returns:
54 None
55 """
56 emoji = "⚠️" if show_emoji else ""
57 print(colored(f"{emoji} {message}", "yellow"))
58
59def question(message: str, show_emoji: bool = True) -> str:
60 """

Callers 14

mainFunction · 0.85
fetch_songsFunction · 0.85
mainFunction · 0.85
main.pyFile · 0.85
unzip_fileMethod · 0.85
startMethod · 0.85
generate_scriptMethod · 0.85
generate_metadataMethod · 0.85
generate_promptsMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected