Copy text to the clipboard / paste buffer. :param txt: text to copy to the clipboard
(txt: str)
| 14 | |
| 15 | |
| 16 | def write_to_paste_buffer(txt: str) -> None: |
| 17 | """Copy text to the clipboard / paste buffer. |
| 18 | |
| 19 | :param txt: text to copy to the clipboard |
| 20 | """ |
| 21 | pyperclip.copy(txt) |
no outgoing calls
no test coverage detected
searching dependent graphs…