inkstitch/lib/extensions/about.py

15 wiersze
339 B
Python
Czysty Zwykły widok Historia

2024-06-23 08:58:16 +00:00
# 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()