fix type hint compatibility with Python < 3.11

This commit is contained in:
scito 2022-12-29 22:12:07 +01:00
parent d5a088135e
commit faafb61241
5 changed files with 5 additions and 0 deletions

View File

@ -41,6 +41,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
from __future__ import annotations # for compatibility with Python < 3.11
import argparse
import base64
import csv

View File

@ -1,3 +1,4 @@
from __future__ import annotations # for compatibility with Python < 3.11
import pathlib
from setuptools import setup # type: ignore

View File

@ -18,6 +18,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
from __future__ import annotations # for compatibility with Python < 3.11
import io
import os
import pathlib

View File

@ -18,6 +18,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
from __future__ import annotations # for compatibility with Python < 3.11
import io
import os
import sys

View File

@ -18,6 +18,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
from __future__ import annotations # for compatibility with Python < 3.11
import unittest
import extract_otp_secret_keys