Skip to content

Commit 44a1efa

Browse files
committedFeb 8, 2016
applets: make sure pyqtgraph imports qt5
1 parent 67327b1 commit 44a1efa

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed
 

‎artiq/applets/big_number.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python3.5
22

3-
from quamash import QtWidgets
3+
from PyQt5 import QtWidgets
44

55
from artiq.applets.simple import SimpleApplet
66

‎artiq/applets/plot_hist.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#!/usr/bin/env python3.5
22

33
import numpy as np
4+
import PyQt5 # make sure pyqtgraph imports Qt5
45
import pyqtgraph
56

67
from artiq.applets.simple import SimpleApplet

‎artiq/applets/plot_xy.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#!/usr/bin/env python3.5
22

33
import numpy as np
4+
import PyQt5 # make sure pyqtgraph imports Qt5
45
import pyqtgraph
56

67
from artiq.applets.simple import SimpleApplet

‎artiq/applets/plot_xy_hist.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python3.5
22

33
import numpy as np
4-
from quamash import QtWidgets
4+
from PyQt5 import QtWidgets
55
import pyqtgraph
66

77
from artiq.applets.simple import SimpleApplet

0 commit comments

Comments
 (0)
Please sign in to comment.