Fixed an issue with a recursion of cv2 in python

pull/22269/head
Andrey Senyaev 2 years ago
parent c9e10e1d0b
commit 1feabf4275
  1. 2
      modules/python/package/cv2/__init__.py

@ -40,7 +40,7 @@ def bootstrap():
BINARIES_PATHS = []
g_vars = globals()
l_vars = locals()
l_vars = locals().copy()
if sys.version_info[:2] < (3, 0):
from . load_config_py2 import exec_file_wrapper

Loading…
Cancel
Save