mirror of
https://github.com/blender/blender
synced 2026-09-26 16:15:47 +03:00
Cleanup: include otherwise unused imports in __all__
Suppresses unused import warnings with "ruff check".
This commit is contained in:
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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue