Skip to content

Commit 7f505ed

Browse files
committed
Remove standard PyQT dependency, and use python_qt_binding instead for coffee_expressions_test_ui
1 parent 39d3a02 commit 7f505ed

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

coffee_ws/src/coffee_expressions_test_ui/coffee_expressions_test_ui/expressions_test_ui.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
import sys
44
import rclpy
55
from rclpy.node import Node
6-
from PyQt5.QtWidgets import (QApplication, QMainWindow, QWidget, QVBoxLayout,
6+
from python_qt_binding.QtWidgets import (QApplication, QMainWindow, QWidget, QVBoxLayout,
77
QHBoxLayout, QComboBox, QRadioButton, QButtonGroup,
88
QSlider, QLabel, QCheckBox, QPushButton, QFrame)
9-
from PyQt5.QtCore import Qt, QTimer
10-
from PyQt5.QtGui import QPainter, QColor, QPen
9+
from python_qt_binding.QtCore import Qt, QTimer
10+
from python_qt_binding.QtGui import QPainter, QColor, QPen
1111
from coffee_expressions_msgs.msg import AffectiveState
1212
from geometry_msgs.msg import Point
1313

coffee_ws/src/coffee_expressions_test_ui/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<depend>rclpy</depend>
1111
<depend>coffee_expressions_msgs</depend>
12-
<depend>python3-pyqt5</depend>
12+
<depend>python_qt_binding</depend>
1313

1414
<test_depend>ament_copyright</test_depend>
1515
<test_depend>ament_flake8</test_depend>

0 commit comments

Comments
 (0)