gtn/python/Lib/site-packages/virtualenv/activation/__init__.py
Tipragot 628be439b8 Ajout d'un environement de développement.
Cela permet de ne pas avoir de problèmes de compatibilité
car python est dans le git.
2023-10-26 15:33:03 +02:00

20 lines
464 B
Python

from __future__ import annotations
from .bash import BashActivator
from .batch import BatchActivator
from .cshell import CShellActivator
from .fish import FishActivator
from .nushell import NushellActivator
from .powershell import PowerShellActivator
from .python import PythonActivator
__all__ = [
"BashActivator",
"PowerShellActivator",
"CShellActivator",
"PythonActivator",
"BatchActivator",
"FishActivator",
"NushellActivator",
]