inkstitch/lib/extensions/about.py

15 wiersze
347 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) -> None:
2024-06-23 08:58:16 +00:00
app = AboutInkstitchApp()
app.MainLoop()