17 lines
237 B
Python
17 lines
237 B
Python
#!/usr/bin/env python
|
|
import os
|
|
import rospy
|
|
import rospkg
|
|
|
|
# from python_qt_binding.QtWidgets import QWidget, QDialog
|
|
|
|
class QtWrapper:
|
|
|
|
def __init__(self,widget):
|
|
|
|
self.widget = widget
|
|
|
|
self.widget.textBrowser.setText('Sukces')
|
|
|
|
|