From e203d610eaf5aa6bebcfe56894c84f3cdb0d765d Mon Sep 17 00:00:00 2001 From: Martijn Pieters Date: Wed, 25 Jan 2023 22:51:52 +0000 Subject: [PATCH] Remove unused typing.Tuple import (#411) The Tuple type hint is only used in a comment and can safely be removed. --- CHANGES/411.bugfix | 1 + frozenlist/__init__.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 CHANGES/411.bugfix diff --git a/CHANGES/411.bugfix b/CHANGES/411.bugfix new file mode 100644 index 00000000..b4ed8eb1 --- /dev/null +++ b/CHANGES/411.bugfix @@ -0,0 +1 @@ +Removed an unused typing.Tuple import diff --git a/frozenlist/__init__.py b/frozenlist/__init__.py index 4f172e7c..ba2459a2 100644 --- a/frozenlist/__init__.py +++ b/frozenlist/__init__.py @@ -3,7 +3,7 @@ import types from collections.abc import MutableSequence from functools import total_ordering -from typing import Tuple, Type +from typing import Type __version__ = "1.3.3"