Cleanup: include otherwise unused imports in __all__

Suppresses unused import warnings with "ruff check".
This commit is contained in:
Campbell Barton 2024-03-17 17:23:16 +11:00
parent 6768ded895
commit 2de84a77ac
2 changed files with 5 additions and 0 deletions

@ -10,6 +10,7 @@ __all__ = (
"app",
"context",
"data",
"msgbus",
"ops",
"path",
"props",

@ -2,6 +2,10 @@
#
# SPDX-License-Identifier: GPL-2.0-or-later
__all__ = (
"ToolDef",
)
# Until we untangle ToolDef from bl_ui internals,
# use this module to document ToolDef.
from bl_ui.space_toolsystem_common import ToolDef