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 817b26a commit a0da72aCopy full SHA for a0da72a
mots_resolve.py
@@ -61,7 +61,8 @@ def __init__(self, logger=None):
61
self.bmd = None
62
63
# only initialize the Resolve API if the Python version check is successful
64
- if self.python_check():
+ # (if the user did not pass --skip-python-check via the command line)
65
+ if self.python_check() or '--skip-python-check' in sys.argv:
66
67
# initialize the Resolve API
68
self.api = self.get_resolve()
0 commit comments