Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tserg committed May 6, 2023
1 parent 1b5a390 commit 00c26cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vyper/semantics/types/bytestrings.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 00c26cf

Please sign in to comment.