chore: remove unused TYPE_CHECKING imports

This commit is contained in:
Travis Abendshien
2026-07-18 04:23:57 -07:00
parent d98beaf444
commit 210b469bd2
2 changed files with 1 additions and 8 deletions
@@ -1,7 +1,7 @@
# SPDX-FileCopyrightText: (c) TagStudio Contributors
# SPDX-License-Identifier: GPL-3.0-only
from typing import TYPE_CHECKING, override
from typing import override
import structlog
from PySide6 import QtCore, QtGui
@@ -16,9 +16,6 @@ from tagstudio.qt.views.stylesheets.stylesheets import (
autofill_scroll_top_style,
)
if TYPE_CHECKING:
pass
logger = structlog.get_logger(__name__)
@@ -1,7 +1,6 @@
# SPDX-FileCopyrightText: (c) TagStudio Contributors
# SPDX-License-Identifier: GPL-3.0-only
from typing import TYPE_CHECKING
import structlog
from PySide6.QtCore import Qt
@@ -20,9 +19,6 @@ from tagstudio.qt.views.stylesheets.stylesheets import (
autofill_scroll_top_style,
)
if TYPE_CHECKING:
pass
logger = structlog.get_logger(__name__)