mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-04-28 18:02:38 +02:00
Add __future__ annotations for backwards-compatible typehint
This commit is contained in:
parent
54ab9ce98f
commit
fb66946694
1 changed files with 3 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue