Skip to content

Commit

Permalink
Resolve API Python check
Browse files Browse the repository at this point in the history
Improved updates check
App icons
  • Loading branch information
octimot committed Mar 26, 2023
1 parent 817b26a commit a0da72a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mots_resolve.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ def __init__(self, logger=None):
self.bmd = None

# only initialize the Resolve API if the Python version check is successful
if self.python_check():
# (if the user did not pass --skip-python-check via the command line)
if self.python_check() or '--skip-python-check' in sys.argv:

# initialize the Resolve API
self.api = self.get_resolve()
Expand Down

0 comments on commit a0da72a

Please sign in to comment.