Remove dependency on six (#160)

We no longer need six now that we require Python 3.x.
This commit is contained in:
Jon Parise 2022-05-17 11:10:58 -07:00 committed by GitHub
parent 4a9c18c1b8
commit 68c5f14cd4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 2 deletions

View file

@ -9,5 +9,4 @@ Jinja2==2.11.3
MarkupSafe==1.1.1
pycparser==2.20
redis==2.10.6
six==1.14.0
Werkzeug==0.15.6

View file

@ -5,12 +5,12 @@ import uuid
import json
from unittest import TestCase
from unittest import mock
from urllib.parse import unquote
from cryptography.fernet import Fernet
from freezegun import freeze_time
from werkzeug.exceptions import BadRequest
from fakeredis import FakeStrictRedis
from six.moves.urllib.parse import unquote
# noinspection PyPep8Naming
import snappass.main as snappass