Reorder imports in `qt_screen_info.py` ??

For wtv reason on nixos importing `pyqtgraph` first is causing `numpy`
to fail import?? No idea, but likely something to do with recent
`flake.nix`'s ld-lib-linking with `<nixpkgs>` marlarky?
nixround2_n_sway_testing
Tyler Goodlet 2025-12-16 18:22:05 -05:00
parent b8fe866826
commit 74fcf8ec25
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,6 @@ Resource list for mucking with DPIs on multiple screens:
'''
from pyqtgraph import QtGui
from PyQt6 import (
QtCore,
QtWidgets,
@ -43,6 +42,7 @@ from PyQt6.QtCore import (
QSize,
QRect,
)
from pyqtgraph import QtGui
# Proper high DPI scaling is available in Qt >= 5.6.0. This attibute
# must be set before creating the application