Files
fenrir/src/fenrirscreenreader/commands/vmenu-profiles/KEY/emoji/flags/switzerland.py
2025-07-17 11:11:35 -04:00

23 lines
618 B
Python

class command():
def initialize(self, environment):
self.env = environment
self.emoji = "🇨🇭"
def shutdown(self):
pass
def setCallback(self, callback):
pass
def getDescription(self):
return "Add Switzerland flag emoji to clipboard"
def run(self):
self.env["runtime"]["MemoryManager"].add_value_to_first_index(
"clipboardHistory", self.emoji
)
self.env["runtime"]["OutputManager"].present_text(
"Added Switzerland flag to clipboard",
interrupt=False, flush=False
)