Skip to content

Commit 4533ffb

Browse files
author
Release Manager
committed
gh-36639: fix broken pyright in CI This is trying to fix our broken CI, where pyright complains about the type of `PariError`. ### 📝 Checklist - [x] The title is concise, informative, and self-explanatory. - [x] The description explains in detail what this PR is about. URL: #36639 Reported by: Frédéric Chapoton Reviewer(s): Tobias Diez
2 parents 636c96c + 76196ad commit 4533ffb

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/sage/dynamics/arithmetic_dynamics/projective_ds.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -117,10 +117,7 @@ class initialization directly.
117117
lazy_import('sage.rings.padics.factory', 'Qp')
118118
lazy_import('sage.rings.qqbar', 'number_field_elements_from_algebraics')
119119

120-
try:
121-
from sage.libs.pari.all import PariError
122-
except ImportError:
123-
PariError = ()
120+
from sage.libs.pari.all import PariError
124121

125122

126123
class DynamicalSystem_projective(SchemeMorphism_polynomial_projective_space,

0 commit comments

Comments
 (0)