Skip to content

Commit 36c2ec1

Browse files
fix: typecheck
1 parent 8adb0f4 commit 36c2ec1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/models-library/src/models_library/utils/common_validators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ def to_camel_recursive(data: dict[str, Any]) -> dict[str, Any]:
152152

153153
def ensure_pattern_has_enough_characters(
154154
min_non_wildcard_chars: int = MIN_NON_WILDCARD_CHARS,
155-
wildcard_chars: set[str] | None = None,
155+
wildcard_chars: list[str] | None = None,
156156
) -> BeforeValidator:
157157
if wildcard_chars is None:
158158
wildcard_chars = WILDCARD_CHARS

0 commit comments

Comments
 (0)