Skip to content

Commit

Permalink
applets: make sure pyqtgraph imports qt5
Browse files Browse the repository at this point in the history
sbourdeauducq committed Feb 8, 2016
1 parent 67327b1 commit 44a1efa
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion artiq/applets/big_number.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python3.5

from quamash import QtWidgets
from PyQt5 import QtWidgets

from artiq.applets.simple import SimpleApplet

1 change: 1 addition & 0 deletions artiq/applets/plot_hist.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/env python3.5

import numpy as np
import PyQt5 # make sure pyqtgraph imports Qt5
import pyqtgraph

from artiq.applets.simple import SimpleApplet
1 change: 1 addition & 0 deletions artiq/applets/plot_xy.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/env python3.5

import numpy as np
import PyQt5 # make sure pyqtgraph imports Qt5
import pyqtgraph

from artiq.applets.simple import SimpleApplet
2 changes: 1 addition & 1 deletion artiq/applets/plot_xy_hist.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3.5

import numpy as np
from quamash import QtWidgets
from PyQt5 import QtWidgets
import pyqtgraph

from artiq.applets.simple import SimpleApplet

0 comments on commit 44a1efa

Please sign in to comment.