blob: f79e027f8d6deef882518fb865fd63b7db614a37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# Authors: see git history
#
# Copyright (c) 2023 Authors
# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
from ..gui.about import AboutInkstitchApp
from .base import InkstitchExtension
class About(InkstitchExtension):
def effect(self) -> None:
app = AboutInkstitchApp()
app.MainLoop()
|