Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] authored and github-actions[bot] committed Aug 23, 2024
1 parent 1f8a2d0 commit 171874d
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .deepsource.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ version = 1
name = "python"

[analyzers.meta]
runtime_version = "3.x.x"
runtime_version = "3.x.x"
33 changes: 27 additions & 6 deletions AnimeSnap/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,36 @@

from PyQt6.QtCore import QSize
from PyQt6.QtGui import QIcon
from PyQt6.QtWidgets import (QCheckBox, QFileDialog, QHBoxLayout, QLabel,
QLineEdit, QMainWindow, QMessageBox, QPushButton,
QSizePolicy, QSpacerItem, QStackedWidget,
QTextEdit, QVBoxLayout, QWidget)
from PyQt6.QtWidgets import (
QCheckBox,
QFileDialog,
QHBoxLayout,
QLabel,
QLineEdit,
QMainWindow,
QMessageBox,
QPushButton,
QSizePolicy,
QSpacerItem,
QStackedWidget,
QTextEdit,
QVBoxLayout,
QWidget,
)
from qdarkstyle import load_stylesheet # type: ignore
from qdarkstyle.light.palette import LightPalette # type: ignore

from AnimeSnap.consts import (AUTHOR, GITHUB, HEIGHT, ICON_SIZE, ICONS_PATH,
PACKAGE, WIDTH, X, Y)
from AnimeSnap.consts import (
AUTHOR,
GITHUB,
HEIGHT,
ICON_SIZE,
ICONS_PATH,
PACKAGE,
WIDTH,
X,
Y,
)
from AnimeSnap.consts import __desc__ as DESC
from AnimeSnap.consts import __version__ as VERSION
from AnimeSnap.json_operations import json_to_tabular, save_to_json
Expand Down

0 comments on commit 171874d

Please sign in to comment.