Skip to content

Commit

Permalink
Extend configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasdiez committed Aug 18, 2020
1 parent 6ab9fe9 commit 256a9f5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
13 changes: 11 additions & 2 deletions pyrightconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
"include": [
"src/sage/manifolds"
],

"pythonVersion": "3.7"
"executionEnvironments": [
{
"root": "src"
}
],
"pythonVersion": "3.7",

"reportMissingImports": "warning",
"reportGeneralTypeIssues": "warning",
"reportUnboundVariable": "warning",
"reportDuplicateImport": "error"
}
2 changes: 1 addition & 1 deletion src/sage/manifolds/chart.py
Original file line number Diff line number Diff line change
Expand Up @@ -2928,7 +2928,7 @@ def _plot_xx_list(xx_list, rem_coords, ranges, steps, number_values):
resu._extra_kwds['axes_labels'] = [r'$'+latex(ac)+r'$'
for ac in ambient_coords]
else: # 3D graphic
resu.aspect_ratio(1)
resu.set_aspect_ratio(1)
if label_axes:
labels = [str(ac) for ac in ambient_coords]
resu = set_axes_labels(resu, *labels)
Expand Down

0 comments on commit 256a9f5

Please sign in to comment.