]> jfr.im git - irc/weechat/qweechat.git/commitdiff
Fix some more imports.
authorAbhilash Raj <redacted>
Sat, 5 Jun 2021 18:03:55 +0000 (11:03 -0700)
committerAbhilash Raj <redacted>
Sat, 5 Jun 2021 18:03:55 +0000 (11:03 -0700)
qweechat/buffer.py

index c501d4830e82758a06e74ede69f74ce34b222c92..4320fdd8b7123f72a79ff881ae84a04a524094b1 100644 (file)
 # along with QWeeChat.  If not, see <http://www.gnu.org/licenses/>.
 #
 from pkg_resources import resource_filename
+
 from qweechat.chat import ChatTextEdit
 from qweechat.input import InputLineEdit
-import qweechat.weechat.color as color
+from qweechat.weechat import color
 
-from PySide6 import QtCore
-from PySide6 import QtWidgets
-from PySide6 import QtGui
+from PySide6 import QtCore, QtGui, QtWidgets
 
 
 class GenericListWidget(QtWidgets.QListWidget):