From 00c26cf2bf9bacb64cc00cd5871d79c869bc4163 Mon Sep 17 00:00:00 2001 From: tserg <8017125+tserg@users.noreply.github.com> Date: Sat, 6 May 2023 12:37:21 +0800 Subject: [PATCH] fix lint --- vyper/semantics/types/bytestrings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vyper/semantics/types/bytestrings.py b/vyper/semantics/types/bytestrings.py index 80427f3127..9c3d1544a4 100644 --- a/vyper/semantics/types/bytestrings.py +++ b/vyper/semantics/types/bytestrings.py @@ -82,7 +82,7 @@ def compare_type(self, other): return False if self._length and other._length: - # when comparing two literals, invert the comparison so that the + # when comparing two literals, invert the comparison so that the # larger type is derived during annotation of the smaller type for widening if self._is_literal and other._is_literal: return self._length <= other._length