We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 268e8ec commit 596612eCopy full SHA for 596612e
interpreter/core/computer/display/display.py
@@ -12,14 +12,14 @@
12
import requests
13
from ...utils.lazy_import import lazy_import
14
from ..utils.recipient_utils import format_to_recipient
15
-import cv2
16
from screeninfo import get_monitors # for getting info about connected monitors
17
18
19
# Still experimenting with this
20
# from utils.get_active_window import get_active_window
21
22
# Lazy import of optional packages
+cv2 = lazy_import("cv2")
23
pyautogui = lazy_import("pyautogui")
24
np = lazy_import("numpy")
25
plt = lazy_import("matplotlib.pyplot")
0 commit comments