From b1a452ab8e0ad2075b902629a85bc21afc502664 Mon Sep 17 00:00:00 2001 From: Your Name Date: Sat, 16 Aug 2025 15:06:57 +0300 Subject: [PATCH] Add initial docstring for gui package Created src/gui/__init__.py with a package-level docstring describing the purpose of the GUI modules for YTSage. --- src/gui/__init__.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/gui/__init__.py diff --git a/src/gui/__init__.py b/src/gui/__init__.py new file mode 100644 index 0000000..0f5f1ba --- /dev/null +++ b/src/gui/__init__.py @@ -0,0 +1,5 @@ +""" +GUI modules for YTSage. + +This package contains all user interface components and related functionality. +"""