e8b3ecf264495b6e5cf9b5f07889545ed242b64b
Marco Ricci Move typing classes into se...

Marco Ricci authored 2 months ago

1) # SPDX-FileCopyrightText: 2024 Marco Ricci <m@the13thletter.info>
2) #
3) # SPDX-License-Identifier: MIT
4) 
5) """Common typing declarations for the parent module.
6) 
7) """
8) 
9) from __future__ import annotations
10) 
Marco Ricci Support Python 3.10 and PyP...

Marco Ricci authored 2 months ago

11) from typing_extensions import (
12)     Any, NotRequired, Required, TypedDict, TypeGuard,
13) )