kopia lustrzana https://github.com/inkstitch/inkstitch
15 wiersze
339 B
Python
15 wiersze
339 B
Python
![]() |
# 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()
|