Skip to content

Commit

Permalink
chore: linting
Browse files Browse the repository at this point in the history
  • Loading branch information
zarath authored Feb 3, 2025
1 parent 1f3cd68 commit 218d9cd
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 15 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ pythonpath = [


[tool.ruff]
line-length = 120
line-length = 80
target-version = 'py311'
fix = true
show-fixes = true
Expand Down
4 changes: 2 additions & 2 deletions src/NanoVNASaver/Windows/ui/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ def get_window_icon() -> QIcon:


__all__ = [
"qInitResources",
"Ui_DialogAbout",
"WINDOW_ICON_RES",
"Ui_DialogAbout",
"get_window_icon",
"qInitResources",
]
23 changes: 12 additions & 11 deletions src/NanoVNASaver/Windows/ui/about.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,18 @@
## WARNING! All changes made in this file will be lost when recompiling UI file!
################################################################################

from PySide6.QtCore import (QCoreApplication, QDate, QDateTime, QLocale,
QMetaObject, QObject, QPoint, QRect,
QSize, QTime, QUrl, Qt)
from PySide6.QtGui import (QBrush, QColor, QConicalGradient, QCursor,
QFont, QFontDatabase, QGradient, QIcon,
QImage, QKeySequence, QLinearGradient, QPainter,
QPalette, QPixmap, QRadialGradient, QTransform)
from PySide6.QtWidgets import (QApplication, QDialog, QFrame, QHBoxLayout,
QLabel, QPushButton, QSizePolicy, QTextEdit,
QVBoxLayout, QWidget)
from . import main_rc
from PySide6.QtCore import QCoreApplication, QMetaObject, QSize, Qt
from PySide6.QtGui import QIcon, QPixmap
from PySide6.QtWidgets import (
QFrame,
QHBoxLayout,
QLabel,
QPushButton,
QSizePolicy,
QTextEdit,
QVBoxLayout,
)


class Ui_DialogAbout(object):
def setupUi(self, DialogAbout):
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 218d9cd

Please sign in to comment.