mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-22 18:01:07 +00:00
8 lines
188 B
Python
8 lines
188 B
Python
def copy_to_clipboard(text):
|
|
"""
|
|
This acts as a wrapper to defer the importing of pyperclip util actual usage
|
|
"""
|
|
import pyperclip # type ignore
|
|
|
|
pyperclip.copy(text)
|