blob: 804bfbc1876133e79f5d4fffe2c5aecf173e38c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
try:
import sip
sip.setapi('QString', 2)
sip.setapi('QVariant', 2)
except ValueError:
pass
import firstrun
import firstrun.wizard
__all__ = ['firstrun', 'firstrun.wizard']
|