Skip to content

Commit 9d3d6d3

Browse files
committed
Revert "trigger tests"
This reverts commit 6adeb50.
1 parent ebad287 commit 9d3d6d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/common-library/src/common_library/pydantic_basic_types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class ConstrainedStr(str): # noqa: SLOT000
2020
curtail_length: int | None = None
2121

2222
@classmethod
23-
def _validate(cls, __input_value: str) -> str: # noqa: PYI063
23+
def _validate(cls, __input_value: str) -> str:
2424
if cls.curtail_length and len(__input_value) > cls.curtail_length:
2525
__input_value = __input_value[: cls.curtail_length]
2626
return cls(__input_value)

0 commit comments

Comments
 (0)