Skip to content

Commit

Permalink
suggested details
Browse files Browse the repository at this point in the history
  • Loading branch information
fchapoton committed Nov 22, 2023
1 parent 62eb1d5 commit 8d8b28d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sage/interfaces/axiom.py
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ def _eval_line(self, line, reformat=True, allow_use_file=False,
return out
# out = out.lstrip()
i = out.find('\n')
out = out[i + 1:]
out = out[i+1:]
outs = out.split("\n")
i = 0
for line in outs:
Expand Down Expand Up @@ -620,7 +620,7 @@ def type(self):
P = self._check_valid()
s = P._eval_line(self.name())
i = s.rfind('Type:')
return P(s[i + 5:].strip())
return P(s[i+5:].strip())

def __len__(self):
"""
Expand Down

0 comments on commit 8d8b28d

Please sign in to comment.