Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34b4c31 commit f93b809Copy full SHA for f93b809
lib/matplotlib/_mathtext_data.py
@@ -1726,12 +1726,12 @@
1726
# or when the tuple has a reserved hex value for the font.
1727
# Otherwise it returns the int value of the Unicode name
1728
1729
- stix_virtual_fonts[keys][i] = tuple(
+ stix_virtual_fonts[keys][i] = tuple( # type: ignore
1730
[x if idx == 2 or not isinstance(x, str)
1731
else int(ord(x)) for idx, x in
1732
- enumerate(stix_virtual_fonts[keys][i])])
+ enumerate(stix_virtual_fonts[keys][i])]) # type: ignore
1733
else:
1734
- for m, mv in enumerate(stix_virtual_fonts[keys][k]):
+ for m, mv in enumerate(stix_virtual_fonts[keys][k]): # type: ignore
1735
stix_virtual_fonts[keys][k][m] = tuple(
1736
1737
0 commit comments