### Description of the bug When the PEP695 syntax is used for type alias declaration, no docstring is gathered. it should be treated the same way as: ```python from typing import TypeAlias SomeType: TypeAlias = int """Type alias docstring""" ``` ### To Reproduce ```python type SomeType = int """Type alias docstring""" ``` ### Expected behavior Should gather type alias and show it on the mkdocs site like when `TypeAlias` is used: <img width="1157" height="230" alt="Image" src="https://github.com/user-attachments/assets/01126db4-c303-4742-86e3-adf446c51d82" /> ### Environment information <!-- Please run the following command in your repository and paste its output below it, redacting sensitive information. --> ```bash python -m mkdocstrings_handlers.python._internal.debug # | xclip -selection clipboard ``` - __System__: Linux-6.2.6-76060206-generic-x86_64-with-glibc2.39 - __Python__: cpython 3.12.3 (/workspace/clive/venv/bin/python) - __Environment variables__: - __Installed packages__: - `mkdocstrings-python` v1.16.12 ### Additional context https://peps.python.org/pep-0695/