Skip to content

Commit fe44fd6

Browse files
committed
Mark constant RE_DATA_URI as Final
1 parent e1b5d1e commit fe44fd6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

stubs/datauri/datauri/datauri.pyi

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
from collections.abc import Generator
22
from re import Pattern
3+
from typing import Final
34

4-
RE_DATA_URI: Pattern[str] # undocumented
5+
RE_DATA_URI: Final[Pattern[str]] # undocumented
56

67
class DataURIError(ValueError): ...
78

0 commit comments

Comments
 (0)