Skip to content

Commit a3b90c2

Browse files
authored
refactor: Change Literal[None] to None (#84)
1 parent 83acd98 commit a3b90c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dataframely/_extre.pyi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from typing import Literal, overload
1+
from typing import overload
22

33
def matching_string_length(regex: str) -> tuple[int, int | None]:
44
"""
@@ -48,7 +48,7 @@ def sample(
4848
@overload
4949
def sample(
5050
regex: str,
51-
n: Literal[None] = None,
51+
n: None = None,
5252
max_repetitions: int = 16,
5353
seed: int | None = None,
5454
) -> str: ...

0 commit comments

Comments
 (0)