We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a0a964 commit f1fd855Copy full SHA for f1fd855
ayon_api/utils.py
@@ -416,9 +416,9 @@ def entity_data_json_default(value: Any) -> Any:
416
417
def slugify_string(
418
input_string: str,
419
- separator: Optional[str] = "_",
420
- slug_whitelist: Optional[Iterable[str]] = SLUGIFY_WHITELIST,
421
- split_chars: Optional[Iterable[str]] = SLUGIFY_SEP_WHITELIST,
+ separator: str = "_",
+ slug_whitelist: Iterable[str] = SLUGIFY_WHITELIST,
+ split_chars: Iterable[str] = SLUGIFY_SEP_WHITELIST,
422
min_length: int = 1,
423
lower: bool = False,
424
make_set: bool = False,
0 commit comments