diff options
| author | capellancitizen <thecapellancitizen@gmail.com> | 2025-03-09 21:21:48 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-09 21:21:48 -0400 |
| commit | 99509df8d8abf1e7b701a4a09cf170a362f6d878 (patch) | |
| tree | a461549502fa9f37dc287789b6c7db81dfcd5368 /lib/extensions/sew_stack_editor.py | |
| parent | 0d2fc24f25f87562f0755b53dad6204efad1330d (diff) | |
Mypy type correctness (#3199)
Diffstat (limited to 'lib/extensions/sew_stack_editor.py')
| -rwxr-xr-x | lib/extensions/sew_stack_editor.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/extensions/sew_stack_editor.py b/lib/extensions/sew_stack_editor.py index a7cc9e38..3b703225 100755 --- a/lib/extensions/sew_stack_editor.py +++ b/lib/extensions/sew_stack_editor.py @@ -6,8 +6,8 @@ import sys import wx from wx.lib.agw import ultimatelistctrl as ulc -from wx.lib.checkbox import GenCheckBox -from wx.lib.splitter import MultiSplitterWindow +from wx.lib.checkbox import GenCheckBox # type:ignore[import-untyped] +from wx.lib.splitter import MultiSplitterWindow # type:ignore[import-untyped] from .base import InkstitchExtension from ..debug.debug import debug |
