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 e1b5d1e commit fe44fd6Copy full SHA for fe44fd6
stubs/datauri/datauri/datauri.pyi
@@ -1,7 +1,8 @@
1
from collections.abc import Generator
2
from re import Pattern
3
+from typing import Final
4
-RE_DATA_URI: Pattern[str] # undocumented
5
+RE_DATA_URI: Final[Pattern[str]] # undocumented
6
7
class DataURIError(ValueError): ...
8
0 commit comments