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/__init__.py | |
| parent | 0d2fc24f25f87562f0755b53dad6204efad1330d (diff) | |
Mypy type correctness (#3199)
Diffstat (limited to 'lib/extensions/__init__.py')
| -rw-r--r-- | lib/extensions/__init__.py | 148 |
1 files changed, 75 insertions, 73 deletions
diff --git a/lib/extensions/__init__.py b/lib/extensions/__init__.py index 9b25ff91..289cac31 100644 --- a/lib/extensions/__init__.py +++ b/lib/extensions/__init__.py @@ -77,76 +77,78 @@ from .update_svg import UpdateSvg from .zigzag_line_to_satin import ZigzagLineToSatin from .zip import Zip -__all__ = extensions = [About, - ApplyPalette, - ApplyThreadlist, - AutoRun, - AutoSatin, - BreakApart, - Cleanup, - CommandsScaleSymbols, - ConvertToSatin, - ConvertToStroke, - CutSatin, - CutworkSegmentation, - DensityMap, - DisplayStackingOrder, - DuplicateParams, - ElementInfo, - FillToSatin, - FillToStroke, - Flip, - GeneratePalette, - GlobalCommands, - GradientBlocks, - Input, - Install, - InstallCustomPalette, - JumpToStroke, - JumpToTrim, - KnockdownFill, - LayerCommands, - Lettering, - LetteringAlongPath, - LetteringCustomFontDir, - LetteringEditJson, - LetteringFontSample, - LetteringForceLockStitches, - LetteringGenerateJson, - LetteringRemoveKerning, - LetteringSetColorSortIndex, - LetteringSvgFontToLayers, - LettersToFont, - ObjectCommands, - ObjectCommandsToggleVisibility, - Outline, - Output, - PaletteSplitText, - PaletteToText, - Params, - PngRealistic, - PngSimple, - Preferences, - Print, - Redwork, - RemoveDuplicatedPoints, - RemoveEmbroiderySettings, - Reorder, - SatinMulticolor, - SelectElements, - SelectionToAnchorLine, - SelectionToGuideLine, - SelectionToPattern, - SewStackEditor, - Simulator, - StitchPlanPreview, - StitchPlanPreviewUndo, - StrokeToLpeSatin, - Tartan, - TestSwatches, - ThreadList, - Troubleshoot, - UnlinkClone, - UpdateSvg, - ZigzagLineToSatin, - Zip] +extensions = [ + About, + ApplyPalette, + ApplyThreadlist, + AutoRun, + AutoSatin, + BreakApart, + Cleanup, + CommandsScaleSymbols, + ConvertToSatin, + ConvertToStroke, + CutSatin, + CutworkSegmentation, + DensityMap, + DisplayStackingOrder, + DuplicateParams, + ElementInfo, + FillToSatin, + FillToStroke, + Flip, + GeneratePalette, + GlobalCommands, + GradientBlocks, + Input, + Install, + InstallCustomPalette, + JumpToStroke, + JumpToTrim, + KnockdownFill, + LayerCommands, + Lettering, + LetteringAlongPath, + LetteringCustomFontDir, + LetteringEditJson, + LetteringFontSample, + LetteringForceLockStitches, + LetteringGenerateJson, + LetteringRemoveKerning, + LetteringSetColorSortIndex, + LetteringSvgFontToLayers, + LettersToFont, + ObjectCommands, + ObjectCommandsToggleVisibility, + Outline, + Output, + PaletteSplitText, + PaletteToText, + Params, + PngRealistic, + PngSimple, + Preferences, + Print, + Redwork, + RemoveDuplicatedPoints, + RemoveEmbroiderySettings, + Reorder, + SatinMulticolor, + SelectElements, + SelectionToAnchorLine, + SelectionToGuideLine, + SelectionToPattern, + SewStackEditor, + Simulator, + StitchPlanPreview, + StitchPlanPreviewUndo, + StrokeToLpeSatin, + Tartan, + TestSwatches, + ThreadList, + Troubleshoot, + UnlinkClone, + UpdateSvg, + ZigzagLineToSatin, + Zip +] |
