File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 55
66# Check that PySide2 is not included before fast
77import sys
8- if 'fast' not in sys .modules and 'PySide2.QtCore' in sys .modules :
9- raise RuntimeError ('You have to import fast before PySide2!\n \n '
10- 'Import FAST before PySide2 in the following way:\n '
11- 'if platform.system() != \' Windows\' :\n '
12- ' import PySide2.QtSvg # Must import this before fast due to conflicting symbols\n '
13- 'import fast # Must import FAST before rest of pyside2\n '
14- 'from PySide2.QtWidgets import *' )
8+ # if 'fast' not in sys.modules and 'PySide2.QtCore' in sys.modules:
9+ # raise RuntimeError('You have to import fast before PySide2!\n\n'
10+ # 'Import FAST before PySide2 in the following way:\n'
11+ # 'if platform.system() != \'Windows\':\n'
12+ # ' import PySide2.QtSvg # Must import this before fast due to conflicting symbols\n'
13+ # 'import fast # Must import FAST before rest of pyside2\n'
14+ # 'from PySide2.QtWidgets import *')
1515
1616import os
1717is_windows = sys .platform .startswith ('win' )
You can’t perform that action at this time.
0 commit comments