Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mmatera authored Nov 11, 2024
1 parent 65b8a72 commit af668e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sympy/printing/pretty/stringpict.py
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ def subindex(self, index):
"""
Add a `sub index`.
"""
with_self = self.width()
width_self = self.width()
width_index = index.width()
extended_self = self.right(width_index*stringPict(" "))
index = index.left(width_self*stringPict(" "))
Expand All @@ -343,7 +343,7 @@ def superindex(self, index):
"""
Add a `super index`.
"""
with_self = self.width()
width_self = self.width()
width_index = index.width()
extended_self = self.right(width_index*stringPict(" "))
index = index.left(width_self*stringPict(" "))
Expand Down

0 comments on commit af668e3

Please sign in to comment.