a101d1f604a3ad6de242989f7a4887b78ab012a1
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 Fix style issues with ruff...

Marco Ricci authored 1 month ago

11) from typing import TypeGuard
12) 
Marco Ricci Support Python 3.10 and PyP...

Marco Ricci authored 2 months ago

13) from typing_extensions import (
Marco Ricci Fix style issues with ruff...

Marco Ricci authored 1 month ago

14)     Any,
15)     NotRequired,
16)     Required,
17)     TypedDict,
Marco Ricci Support Python 3.10 and PyP...

Marco Ricci authored 2 months ago

18) )