Add __future__ annotations for backwards-compatible typehint

This commit is contained in:
Ro 2024-06-10 21:22:29 -04:00 committed by Alexis Métaireau
parent 54ab9ce98f
commit fb66946694
No known key found for this signature in database
GPG key ID: C65C7A89A8FFC56E

View file

@ -1,3 +1,5 @@
from __future__ import annotations
import logging
import os
import platform
@ -6,7 +8,7 @@ import subprocess
import typing
from collections import OrderedDict
from pathlib import Path
from typing import Dict, Optional
from typing import Optional
from colorama import Fore