blob: f4ab233ca7f3640ac6d75649600867ce0f3fe68b (
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):
app = AboutInkstitchApp()
app.MainLoop()
|